Navigation

    Duet3D Logo

    Duet3D

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Documentation
    • Order

    SOLVED Problems with Duet 3 Mini 5+ WiFi

    Duet Hardware and wiring
    4
    77
    348
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Unforgivenll
      Unforgivenll @Phaedrux last edited by

      @phaedrux The extruder is mounted and wired already. I bought 4 Moons motors as I plan to have dual Z, one on EO on the mainboard (A problem I'll have in the future I'm sure.). So 390ma for the motors? That's not too low?

      Unforgivenll Phaedrux 2 Replies Last reply Reply Quote 0
      • Unforgivenll
        Unforgivenll @Unforgivenll last edited by

        @unforgivenll The Extruder is a different (LDO) motor and wired differently.

        1 Reply Last reply Reply Quote 0
        • Phaedrux
          Phaedrux Moderator @Unforgivenll last edited by Phaedrux

          @unforgivenll said in Problems with Duet 3 Mini 5+ WiFi:

          So 390ma for the motors? That's not too low?

          Test it and find out.

          650ma seems very low to begin with. How did you determine these motors were suitable in the first place? The rated inductance values from that sheet is very high. 15mH It's not recommended to use motors with an inductance above 4mH

          https://docs.duet3d.com/en/User_manual/Connecting_hardware/Motors_choosing

          I think the phase errors are due to back EMF already exceeding the supply voltage even at low homing speeds.

          Can you try this command?

          G1 H2 X10 F600

          That is a much slower move than the default F6000 and it may be able to complete it.

          Z-Bot CoreXY Build | Thingiverse Profile

          Unforgivenll 1 Reply Last reply Reply Quote 0
          • Unforgivenll
            Unforgivenll @Phaedrux last edited by

            @phaedrux They were recommended for my original printer. I basically rebuilt my Tevo Tornado. There isn't anything original left on it except the extrusion.

            Unforgivenll 1 Reply Last reply Reply Quote 0
            • Unforgivenll
              Unforgivenll @Unforgivenll last edited by

              @unforgivenll Tried the new settings and the same thing happens. The motor just whines.

              1 Reply Last reply Reply Quote 0
              • Phaedrux
                Phaedrux Moderator last edited by

                What voltage is your power supply?

                Z-Bot CoreXY Build | Thingiverse Profile

                1 Reply Last reply Reply Quote 0
                • Phaedrux
                  Phaedrux Moderator last edited by

                  Did you try that lower speed command?

                  Z-Bot CoreXY Build | Thingiverse Profile

                  Unforgivenll 1 Reply Last reply Reply Quote 0
                  • Unforgivenll
                    Unforgivenll @Phaedrux last edited by

                    @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.

                    1 Reply Last reply Reply Quote 0
                    • Phaedrux
                      Phaedrux Moderator last edited by

                      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

                      Z-Bot CoreXY Build | Thingiverse Profile

                      Unforgivenll 2 Replies Last reply Reply Quote 0
                      • Unforgivenll
                        Unforgivenll @Phaedrux last edited by

                        @phaedrux Unfortunately it didn't change anything.

                        1 Reply Last reply Reply Quote 0
                        • Unforgivenll
                          Unforgivenll @Phaedrux last edited by Unforgivenll

                          @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.

                          1 Reply Last reply Reply Quote 0
                          • Phaedrux
                            Phaedrux Moderator last edited by

                            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

                            Z-Bot CoreXY Build | Thingiverse Profile

                            Unforgivenll 1 Reply Last reply Reply Quote 0
                            • Unforgivenll
                              Unforgivenll @Phaedrux last edited by Unforgivenll

                              @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.

                              Unforgivenll 1 Reply Last reply Reply Quote 0
                              • Phaedrux
                                Phaedrux Moderator last edited by

                                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.

                                Z-Bot CoreXY Build | Thingiverse Profile

                                Unforgivenll 1 Reply Last reply Reply Quote 0
                                • Unforgivenll
                                  Unforgivenll @Phaedrux last edited by

                                  @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.

                                  fcwilt 1 Reply Last reply Reply Quote 0
                                  • fcwilt
                                    fcwilt @Unforgivenll last edited by

                                    @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

                                    Printers: A FT-5 with the 713 upgrade bits. A custom MarkForged style. A small Utilmaker style and a CoreXY from kits. Various hotends. Using Duets (2 and 3) running 3.4.1

                                    1 Reply Last reply Reply Quote 0
                                    • Phaedrux
                                      Phaedrux Moderator last edited by

                                      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.

                                      Z-Bot CoreXY Build | Thingiverse Profile

                                      1 Reply Last reply Reply Quote 0
                                      • Unforgivenll
                                        Unforgivenll @Unforgivenll last edited by

                                        @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 right

                                        G28 ; 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

                                        Phaedrux fcwilt 2 Replies Last reply Reply Quote 0
                                        • Phaedrux
                                          Phaedrux Moderator @Unforgivenll last edited by

                                          @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.

                                          Z-Bot CoreXY Build | Thingiverse Profile

                                          1 Reply Last reply Reply Quote 0
                                          • fcwilt
                                            fcwilt @Unforgivenll last edited by

                                            @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 right

                                            G28 ; 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

                                            Your 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

                                            Printers: A FT-5 with the 713 upgrade bits. A custom MarkForged style. A small Utilmaker style and a CoreXY from kits. Various hotends. Using Duets (2 and 3) running 3.4.1

                                            Unforgivenll 1 Reply Last reply Reply Quote 0
                                            • Unforgivenll
                                              Unforgivenll @fcwilt last edited by Unforgivenll

                                              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 right

                                              G28 ; 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

                                              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?

                                              bed.g

                                              fcwilt 1 Reply Last reply Reply Quote 0
                                              • fcwilt
                                                fcwilt @Unforgivenll last edited by fcwilt

                                                @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 right

                                                G28 ; 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

                                                IF your leadscrews line up with the probe when the probe is at Y=155 then then your M671 and G30s are good.

                                                Frederick

                                                Printers: A FT-5 with the 713 upgrade bits. A custom MarkForged style. A small Utilmaker style and a CoreXY from kits. Various hotends. Using Duets (2 and 3) running 3.4.1

                                                Unforgivenll 1 Reply Last reply Reply Quote 0
                                                • Unforgivenll
                                                  Unforgivenll @fcwilt last edited by

                                                  @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?

                                                  bed.g

                                                  fcwilt 1 Reply Last reply Reply Quote 0
                                                  • fcwilt
                                                    fcwilt @Unforgivenll last edited by

                                                    @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?

                                                    bed.g

                                                    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

                                                    Printers: A FT-5 with the 713 upgrade bits. A custom MarkForged style. A small Utilmaker style and a CoreXY from kits. Various hotends. Using Duets (2 and 3) running 3.4.1

                                                    Unforgivenll 1 Reply Last reply Reply Quote 0
                                                    • Unforgivenll
                                                      Unforgivenll @fcwilt last edited by

                                                      @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.

                                                      config.g
                                                      bed.g

                                                      fcwilt 1 Reply Last reply Reply Quote 1
                                                      • First post
                                                        Last post
                                                      Unless otherwise noted, all forum content is licensed under CC-BY-SA