Home » 3D controller

Category Archives: 3D controller

MKS Base V1.5 E1 extruding too fast

The MKS Base V1.5 is a great little board for a discount 3D print controller however I ran into one problem that had me stumped for a while so I’m passing on my solution for getting the second extruder functioning correctly.

Issue: When attempting to configure the MKS board to use a second extruder  I found that it was extruding almost 8 times as much as the E0 extruder. I attempted to configure Marlin to us a smaller number of steps for the E1 extruder but that didn’t resolve the issue.

Problem: When flashing the firmware to the board I reviewed a bunch of posts that suggested that the MKS Base V1.5 was like the Ramps 1.3 or Ranps 1.4 board and to be fair when working with a single extruder it really seems to be.  So when configuring Marlin I attempted to use the BOARD_RAMPS_13_EEB and BOARD_RAMPS_14_EEB but neither one would fix the issue.

Solution: Ok this gets a little weird because the fix seems unrelated to the problem but the solution is to change the pins config file for whichever ramps you are using. Just go to that file in Marlin and search for the pin names and change –

#define HEATER_1_PIN 7

#define FAN_PIN 9

I know that seems counter intuitive to fix the issue but I’m guessing the heater_1_Pin setting must somehow be used by the code to determine if the microsetps should be set to 16 on the E1 extruder.





Advertisement

RepRapWeb VS OctoPrint as it relates to Raspberry Pi

I have Now installed and had a chance to review Both OctoPrint and RepRapWeb browser based 3d printer controllers installed on a Rasperry PI. One thing I want to make clear before I start is this is not an evaluation of slicing tools of which each tool comes with at least one. Since slicing is a time consuming process with larger models I found a Raspberry PI and it’s small CPU was just not the place to get that done.

So for now here is what I found, RepRapWeb is a cool new tool in the field, written entirely in Node.js for both client and server it’s a really great work in progress for building a controller but its really not ready for “Prime time”. As of this article, although it looks in the YouTube video that there is a integrated video component it does not have one yet; that is still in the works. So with no integrated video there is also no option for time laps videos either. The lack of integrated video was the show stopper for me as a web based controllers strength in my book is the ability to start a 3D print and then leave the 3D printer, checking it from your cell phone every once in a while to make sure something did not screw up. I know you could run a separate video feed on the Raspberry pi but I was looking for something I could view from my office and the company firewall only lets in port 80, so everything coming through that one port is a must. Another issue is the lack of security at the moment in the RepRapWeb, it completely open right now. OctoPrint on the other hand has a sign on, role based model in place to control the 3D printer.

The long and short of it is RepRapWeb has a great deal of potential if your hosting the application on a PC to use as a 3D print controller but right now as a Raspberry PI solution to control your printer remotely it still has a little ways to go. Id stick with OctoPrint.

Using applications on home U-Verse network from the internet

First, this is really easy to set up and since its U-Verse you already have a static IP address that comes with the U-Verse router/server.

1) Step one, Get your external network IP address.  just type http://www.myipaddress.com/ in your browser and you get that.

2) You need to open the firewall for just the app you want. Any app you make available will be just a port on the external IP address. As an example my application which is on the default port 80 of an internal local server is set up as port 8091 of my external IP so I reach it with http://108.239.84.72:8091

a)  Go to U-Verse control panel by typing http://192.168.1.254 in you browser

b) In the top tabs select “settings”

c) Under settings select tap for “Firewall”

d) Select the top bar option of “Applications, Pinholes and DMZ”. You should see select a computer as step 1 and edit firewall as step 2. We are going to the step 2 first.

e) Near the bottom of page click “Add a new user-defined application”

f) This part is really strait forward –

i) give it a simple application name

ii) keep protocol on TCP

iii) Port range should is just the port where the application delivers the content in you local network. In a normal web server that’s 80 so the values for both is the number 80.

iv) Leave timeout empty

v) Map to host Port is just whatever you want it to be but remember that is the port your external access is going to be using, I used 8091.

vi) leave the application type blank.

vii) hit add to list

vii) select the back button. You should now be back at the select a computer page.

g)  Select you internal server by name or type it’s IP if you have a static on setup

h) down below select “Allow individual applications”

g) back at the edit firewall you can now see your new application in the list. Just move it over to hosted applications using add and your done.

OK that’s it you should now be able to test it using something from outside you local wifi network.