Duet Wifi setup - need help
-
Hello,
I'm really new to all this stuff and could use some help…much thanks in advance!
Managed to get the Duet Wifi connected and can access it via the web interface. However, sometimes the IP address changes and I have to figure out what happened, use the new IP address, and then connect. It's a nuisance. I tried duetwifi.local and my browser just does a google search, so that isn't working. I struggle with computer and networking stuff. Is there any way to make this easier?
I'm trying to configure the Duet Wifi for a cartesian printer but the config.g file currently in place is for a Mini Kossel and has some lines referencing a delta setup. Is there a config.file specifically for cartesian printers?
Thanks!
Scot -
There should other versions of the config.g file already on the micro sd card. You just need a card reader for your pc to change to them.
Also, if you go to https://github.com/dc42/RepRapFirmware, you can get them. I would just click on the 'clone or download' button and save the whole thing as a zip file.
-
Regarding the IP address if you access your router's admin page you should be able to reserve an IP for the DuetWifi that way the router will give it the same IP every time
-
Okay, thank you. I found the files on the SD card. I'm assuming the Ormerod 2 would be the best choice for a cartesian printer with single motors on X, Y, and Z? Sorry for the newbie questions.
-
Regarding the IP address if you access your router's admin page you should be able to reserve an IP for the DuetWifi that way the router will give it the same IP every time
Hmmm…would you know how to do this on a Netgear router?
Thanks! -
Depending on your browser, you may have to explicitly type "http://duetwifi.local/" to tell it you don't want a Google search. (If duetwifi is the name you gave your machine during wireless setup.) And the .local thing may not work, for example on Android. Some routers do let you specify that every time a particular device appears it should get a particular IP address, but not all. Most will at least list the devices connected to them, so you can at least look up the IP address of your printer.
-
Okay, thank you. I found the files on the SD card. I'm assuming the Ormerod 2 would be the best choice for a cartesian printer with single motors on X, Y, and Z? Sorry for the newbie questions.
It'll be a good start. Also, there is a web page for making the config files: https://configurator.reprapfirmware.org/ Use the custom configuration.
-
There is also a set of files for a Prusa i3 at https://github.com/dc42/RepRapFirmware/tree/dev/SD-image/sys-Prusai3. It's intended for the Duet 0.8.5, so for the Duet WiFi you should remove the commands to set the network MAC address, IP address, gateway and network mask.
If instead you start from the Ormerod files, you will need to adjust the M574 and M558 commands in config.g to use an X endstop switch, because the Ormerod uses an IR sensor for both X and Z homing.
-
Thanks for the help, guys. Using http://duetwifi.local worked…one problem solved!
I looked at the Ormerod and it looked like it was missing stuff so seemed easier to go back to the original Mini Kossel config.g and edit that. Would I just need to comment the M665 so it's disabled? Anything else I should comment out?
-
Another question for when I get it all up and running the printer…do you think it would be okay to have the board inside a metal enclosure with just the wifi antenna sticking out? My wifi signal is fairly good where the printer is located.
-
Yes, that should be OK. You may wish to protect the protruding antenna from damage with a printed cover.
-
Thank you. I plan to do just that.
There are some M-codes in my current controller's configuration that are not listed in the config.g. I'm assuming it's okay to add stuff as needed? I guess it's mostly just the PID settings that I had been using, M301.
-
I don't advise starting from the Mini Kossel files for a Cartesian printer because too many things need to change. Try the online configuration tool. During initial testing, it's useful to reduce the motor currents and homing speeds, to reduce the risk of damage if you don't get the files quite right.
For PID settings, things changed with the 1.15 release. See https://duet3d.com/wiki/Tuning_the_heater_temperature_control.
-
Where can I find the online configuration tool?
Can I use this for my PID settings? It's what I was using before and, while not perfect, it worked well enough.
M301 H1 P30 I0.02 D150
M304 H0 P10 I0.02 D305 -
You will need to change the PID settings as described in the page I linked to. Another user linked to the configuration tool a few posts back.
-
Thanks, I'm not sure how I missed that…I'm in the process of using the configuration tool and have some questions.
1. I'm assuming to set Reprap for the firmware compatibility? I'm just confused as the default config.g file says set output to look like Marlin.
2. The settings I pulled from my old control board for acceleration was this:
M201 X800 Y800 Z20 E10000
Do these settings sound right and should I use them in the configurator?3. I don't understand the tool mapping page. Do I need to set anything here? The printer is a simple cartesian printer with heated bed and a single nozzle.
4. What should my motor currents be set to? I'm installing the Duet Wifi into a Monoprice Mini Select and it uses JKong JK42HS34-1334AC-02F motors on X, Y, and extruder. The Z-axis motor is a weird round can motor with no markings.
JKong motor specs:
Current/phase 1.33 amps
Resistance/phase 2.1 ohms
Inductance/phase 2.5mH -
1.) Either should be OK, I'd probably stick with Marlin.
2.) Those settings are reasonable
3.) Should be fine leaving as is
4.) I'd do the defaults (800mA)That should get you up and running, you can tweak from there.
-
Thanks! Any idea why the z-axis acceleration is so low and the extruder so high?
-
Your extruder acceleration looks rather high to me, although it may be OK if it is a direct drive extruder with only about 100 steps/mm. I suggest you reduce it to 3000.
It's normal to use a low Z acceleration when the Z axis is driven by a threaded rod and has a very high steps/mm.
-
Good morning!
The extruder is a bowden type with a relatively short tube length, i.e. small printer. Steps/mm is 406.
The z-axis is driven by a finely threaded rod and is 1097 steps/mm.
I wish to integrate the infrared sensor, mine is a v1,1 version, I believe. As stock, the printer has a microswitch for the z-axis. Do I understand correctly that I do not use this micro switch for the z any longer?
Sounds like it's time for me to cut off the many JST style connectors from my printer and attach the Molex type. I have been holding off until I figured out enough about the Duet Wifi so as to minimize my down time.
Thanks again for all the help!