Problems with Duet 3 Mini 5+ WiFi
-
What voltage is your power supply?
-
Did you try that lower speed command?
-
@phaedrux I did try that and it didn't work. I tried my old Tevo motor at 850ma. It worked fine. The $200 worth of Moons motors are literally days old. I did see a discussion somewhere where they might have an incompatibility with the steppers. I think it was Stealth Chop in particular. I have no idea how to test that. I'm not an expert by any means but I generally make my way through electronics projects just fine. This is maybe the 3rd or fourth time asking for help ever. I'm just not having much positive movement with this Duet build. I'm not blaming anything, or anyone. It's probably my fault. Just putting it out there.
-
I believe they should be in spread cycle by default instead of stealthchop but we can force it by adding
D2
to the M569 command for X Y Z.M569 P0.0 S1 ; physical drive 0.0 goes forwards M569 P0.1 S1 ; physical drive 0.1 goes forwards M569 P0.2 S1 ; physical drive 0.2 goes forwards
Add the D2 after the S1
-
@phaedrux Unfortunately it didn't change anything.
-
@phaedrux I'm going to use my old motors for the time being. They are working just fine. I have X and Y wired up without any issues. If you don't mind, could you help me with the dual z? I want to add the second motor to E0. I read the documentation a few times and I'm not sure if I'm understanding it correctly. My full build area is 310x370.
Again, I really appreciate your help. Thank you very much.
-
Yeah those Moons motors just aren't the right specs for a 3d printer. Inductance is too high. Not sure what else to say about that.
To add a second driver to the Z axis you need to tell it that the Z axis has 2 drivers. This is done in the M584 command where the drivers are mapped to the axis.
The mini 5 doesn't have a driver labeled as E0 as far as I'm aware, so assuming you mean driver 3 on the mainboard.
M584 X0.0 Y0.1 Z0.2 E121.0
Would become
M584 X0.0 Y0.1 Z0.2:0.3 E121.0
Now when a G1 Z command is sent, both Z motors will act as one.
Now that you have dual z axis you can do fancier things like this: https://docs.duet3d.com/en/User_manual/Connecting_hardware/Z_probe_auto_levelling
-
@phaedrux Thank you. I don't know why I thought it was labeled EO. When looking at the samples on the page you linked I'm not sure how that gets setup. I'm sorry I guess I'm a little slow here.
-
You mean the auto leveling? Did you see the examples?
https://docs.duet3d.com/en/User_manual/Connecting_hardware/Z_probe_auto_levelling#examples
You tell the firmware which drivers are in each axis.
You tell the firmware where your lead screws approximately are.
Then you setup bed.g to probe near those lead screws and it makes the correction. -
@phaedrux I'm not understanding exactly how to figure out the variables given the example. G208 and G30 especially. I see the explanation and it makes sense, but looking at the measurements on G30 don't make any sense to me.
-
@unforgivenll said in Problems with Duet 3 Mini 5+ WiFi:
@phaedrux I'm not understanding exactly how to figure out the variables given the example. G208 and G30 especially. I see the explanation and it makes sense, but looking at the measurements on G30 don't make any sense to me.
Could you elaborate a bit on what it is you don't understand?
Frederick
-
Well your M208 is already set for your bedsize, so that doesn't change.
The points for the G30 in bed.g are going to depend on where your leadscrews are. If it's a cartesian it's going to be a point on the left and right side of the bed where the probe can reach.
-
@unforgivenll Okay, is this what it should look like?
M584 X0.0 Y0.1 Z0.2:0.3 E121.0E1
M671 X-25:335 Y0:0 S0.5 ; leadscrews at left (connected to Z) and rightG28 ; home
G30 P0 X25 Y155 Z-99999 ; probe near a leadscrew, half way along Y axis
G30 P1 X285 Y155 Z-99999 S2 ; probe near a leadscrew and calibrate 2 motors -
@unforgivenll said in Problems with Duet 3 Mini 5+ WiFi:
M584 X0.0 Y0.1 Z0.2:0.3 E121.0E1
The E1 at the end isn't right.
@unforgivenll said in Problems with Duet 3 Mini 5+ WiFi:
M671 X-25:335 Y0:0 S0.5
Y0:0 is only correct if Y0 is the center of the bed and that's also where the lead screws are located. If Y0 is the front of your bed, and the lead screws are in the middle, the Y value would be approximately half your Y max value. Does that make sense? If your Y position in your G30 commands is correct, it should be Y155 as well.
-
@unforgivenll said in Problems with Duet 3 Mini 5+ WiFi:
@unforgivenll Okay, is this what it should look like?
M584 X0.0 Y0.1 Z0.2:0.3 E121.0E1
M671 X-25:335 Y0:0 S0.5 ; leadscrews at left (connected to Z) and rightG28 ; home
G30 P0 X25 Y155 Z-99999 ; probe near a leadscrew, half way along Y axis
G30 P1 X285 Y155 Z-99999 S2 ; probe near a leadscrew and calibrate 2 motorsYour G30s are probing "near a leadscrew" at Y=155 yet your M671 says they are at Y=0.
Usually they are same or similar.
Frederick
-
bed.g @fcwilt My Y min is actually at the back of my bed. I don't know if that makes a difference. I think I know where this is placed in config.g but I have no idea where it is placed in bed.g. The E1 is a typo, I'm on my phone and was copy/pasting.
So it should be ?
M584 X0.0 Y0.1 Z0.2:0.3 E121.0
M671 X-25:335 Y155:155 S0.5 ; leadscrews at left (connected to Z) and rightG28 ; home
G30 P0 X25 Y155 Z-99999 ; probe near a leadscrew, half way along Y axis
G30 P1 X285 Y155 Z-99999 S2 ; probe near a leadscrew and calibrate 2 motorsI asked where to put the new bed config info because there is some there already. Do I keep what's there or do I replace it with the new config?
-
@unforgivenll said in Problems with Duet 3 Mini 5+ WiFi:
@fcwilt My Y min is actually at the back of my bed. I don't know if that makes a difference. I think I know where this is placed in config.g but I have no idea where it is placed in bed.g. The E1 is a typo, I'm on my phone and was copy/pasting.
So it should be ?
M584 X0.0 Y0.1 Z0.2:0.3 E121.0
M671 X-25:335 Y155:155 S0.5 ; leadscrews at left (connected to Z) and rightG28 ; home
G30 P0 X25 Y155 Z-99999 ; probe near a leadscrew, half way along Y axis
G30 P1 X285 Y155 Z-99999 S2 ; probe near a leadscrew and calibrate 2 motorsIF your leadscrews line up with the probe when the probe is at Y=155 then then your M671 and G30s are good.
Frederick
-
-
@unforgivenll said in Problems with Duet 3 Mini 5+ WiFi:
@fcwilt Thank you. I asked where to put the new bed config info because there is some there already. Do I keep what's there or do I replace it with the new config?
I like to keep related things together.
So my bed.g file has all the commands needed to level the bed.
Some of the commands in my bed.g are often put in config.g but I don't do that.
The M584 should stay in config.g since it is fundamental to the printer working.
The M671, G28 and the G30s, can all go into bed.g
There should be no G28s or G30s in config.g ever.
And if there is a M671 in config.g, remove it and rely on the one in bed.g
Frederick
-
@fcwilt Thank you. Here's my configs again if you want to look at them. I'm working on sensor less homing and setting my Bltouch height from the bed next. It will probably be awhile before you hear from me again as I have to wait for some parts to proceed. I'm sure you won't mind the peace. I appreciate everything.