Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Motor doesn't move

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    4
    33
    930
    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.
    • zfengundefined
      zfeng
      last edited by

      I just wired motors to the Duet2 wifi board. I used the machine movement control trying to move the motor, but the motor only vibrated a little without any rotation. Looks like a misstep. Is this related to my settings? I saw some people also encountered with the same problem and it might have something to do with the speed. How to change the movement speed? Using g-code?

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

        Sounds like a wiring issue. Possibly a bad crimp.

        https://duet3d.dozuki.com/Wiki/Choosing_and_connecting_stepper_motors

        Check that your motor phases are paired correctly and that the wiring is making good contact in the plug.

        For motor current, aim for 60-85% of the rated max of the motor.

        Z-Bot CoreXY Build | Thingiverse Profile

        zfengundefined 3 Replies Last reply Reply Quote 0
        • zfengundefined
          zfeng @Phaedrux
          last edited by

          @phaedrux I double checked the motor phases pairing and also the wiring is making good contact. But still the same. Is there anything wrong with the setting? Do I need to change any code?

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

            @phaedrux I'm using the board for an xyz three direction movement system. I connected the motors to the X-axis, Y-axis, and Z-axis connectors on the left side of the board, is this correct?

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

              @phaedrux Looks like I have similar problem as this one: https://forum.duet3d.com/topic/795/motors-will-budge-but-not-move. How to recompile the firmware for CoreXY?

              SIamundefined 1 Reply Last reply Reply Quote 0
              • SIamundefined
                SIam @zfeng
                last edited by

                @zfeng normally you don't have to recompile the Firmware!
                What kind of Stepper Motors you are using?
                Can you post your config.g file and the output of M122 (enter this in the console)

                Hypercube-Evolution-Hybrid, Piezo Orion, Orbiter
                Duet WiFi 1.02 or later + DueX5
                RepRapFirmware for Duet 2 WiFi/Ethernet 3.4.0beta4 (2021-09-27 11:30:36)
                Duet WiFi Server: 1.26
                Duet Web Control 3.4.0beta4 (2021-09-27)

                zfengundefined 4 Replies Last reply Reply Quote 0
                • Dougal1957undefined
                  Dougal1957
                  last edited by

                  does the duet think that the device has been homed or have you instigated the move anyway override (Can't remember of the top of my head what that is).

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

                    Please post your config.g and homing files and the results of sending m122 and M98 P"config.g" in the console.

                    Z-Bot CoreXY Build | Thingiverse Profile

                    1 Reply Last reply Reply Quote 0
                    • zfengundefined
                      zfeng @SIam
                      last edited by

                      @siam I am using a Duet ethernet board instead, I wired the limit switches, and the motors. Now the problem is, it shows G0/G1 insufficient axes homed when I tried to move the motor.

                      1 Reply Last reply Reply Quote 0
                      • zfengundefined
                        zfeng @SIam
                        last edited by

                        @siam This is config.g code:

                        ; Communication and general
                        M111 S0 ; Debug off
                        M550 PDuetTest ; Machine name and Netbios name (can be anything you like)
                        M551 Preprap ; Machine password (used for FTP)

                        *** Ethernet networking: The following lines are used for factory testing - PLEASE REMOVE THEM

                        M552 P192.168.1.34 ; IP address
                        M554 P192.168.1.255 ; Gateway
                        M553 P255.255.255.0 ; Netmask

                        ;*** End of factory test lines to be removed

                        ;*** Networking
                        M552 S1 ; Turn network on

                        M555 P2 ; Set output to look like Marlin
                        G21 ; Work in millimetres
                        G90 ; Send absolute coordinates...
                        M83 ; ...but relative extruder moves

                        ; Axis and motor configuration
                        M569 P0 S1
                        M569 P1 S1
                        M569 P2 S1
                        M569 P3 S1
                        M569 P4 S1
                        M574 X2 Y2 Z2 S1
                        M564 H0

                        M665 R105.6 L215.0 B85 H250
                        M666 X0 Y0 Z0
                        M350 X16 Y16 Z16 E16:16 I1
                        M92 X80 Y80 Z80
                        M906 X1000 Y1000 Z1000 E800 I60
                        M201 X1000 Y1000 Z1000 E1000
                        M203 X20000 Y20000 Z20000 E3600
                        M566 X1200 Y1200 Z1200 E1200

                        ; Thermistors

                        M305 P0 T100000 B3950 R4700 H30 L0
                        M305 P1 T100000 B3974 R4700 H30 L0
                        M305 P2 T100000 B3974 R4700 H30 L0

                        M570 S180

                        ; Adjustments for dummy heaters on test rig

                        M307 H0 A250 C140 D5.5 B1
                        M307 H1 A250 C140 D5.5 B0
                        M307 H2 A250 C140 D5.5 B0

                        ; Disable Fan 1 thermostatic mode

                        M106 P1 H-1

                        ; Tool definitions
                        M563 P0 D0 H1
                        G10 P0 S0 R0
                        M563 P1 D1 H2
                        G10 P1 S0 R0
                        M92 E80:80

                        ; Z probe and compensation definition

                        M558 P5 F100 T6000 X0 Y0 Z0 H3
                        G31 P100 X0 Y0 Z-0.25

                        M208 S1 Z-0.2

                        T0

                        ;********************************************************************************
                        ; M117 Use https://configurator.reprapfirmware.org/ to set up your printer config
                        ;********************************************************************************

                        1 Reply Last reply Reply Quote 0
                        • zfengundefined
                          zfeng @SIam
                          last edited by

                          @siam This is M122 code:
                          4/14/2021, 4:35:54 PM M122
                          === Diagnostics ===
                          RepRapFirmware for Duet 2 WiFi/Ethernet version 2.05.1 running on Duet Ethernet 1.02 or later
                          Board ID: 0JD0M-9P6M2-NW4SS-6JTDG-3S46L-TUY7M
                          Used output buffers: 1 of 24 (13 max)
                          === RTOS ===
                          Static ram: 25712
                          Dynamic ram: 92504 of which 120 recycled
                          Exception stack ram used: 296
                          Never used ram: 12440
                          Tasks: NETWORK(ready,628) HEAT(blocked,912) MAIN(running,3824) IDLE(ready,160)
                          Owned mutexes:
                          === Platform ===
                          Last reset 00:05:04 ago, cause: power up
                          Last software reset at 2021-04-08 17:40, reason: User, spinning module GCodes, available RAM 12424 bytes (slot 2)
                          Software reset code 0x0003 HFSR 0x00000000 CFSR 0x00000000 ICSR 0x0441f000 BFAR 0xe000ed38 SP 0xffffffff Task 0x4e49414d
                          Error status: 0
                          Free file entries: 10
                          SD card 0 detected, interface speed: 20.0MBytes/sec
                          SD card longest block write time: 3.4ms, max retries 0
                          MCU temperature: min 23.6, current 23.8, max 24.1
                          Supply voltage: min 24.2, current 24.2, max 24.3, under voltage events: 0, over voltage events: 0, power good: yes
                          Driver 0: standstill, SG min/max not available
                          Driver 1: standstill, SG min/max not available
                          Driver 2: standstill, SG min/max not available
                          Driver 3: standstill, SG min/max not available
                          Driver 4: standstill, SG min/max not available
                          Date/time: 2021-04-14 16:35:54
                          Cache data hit count 659643444
                          Slowest loop: 7.55ms; fastest: 0.07ms
                          I2C nak errors 0, send timeouts 0, receive timeouts 0, finishTimeouts 0, resets 0

                          1 Reply Last reply Reply Quote 0
                          • zfengundefined
                            zfeng @SIam
                            last edited by

                            @siam There actually are mode code coming out of the M122, but was marked as spam by the forum so I cannot post them here...

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

                              You'll need to generate a config file set for your printer here: https://configurator.reprapfirmware.org/

                              At the end save the zip file and then upload it to the web interface system tab.

                              You can't move a motor before it's been homed by default.

                              If you want to force motor movement to see if it's working you can send G92 X100 Y100 Z100 to trick the firmware into thinking the axis have been homed. You can then use the jog buttons to move the motors but be careful because without the proper axis dimensions and homing sequence it won't know the actual position of the print head and will gladly smash into the frame if you tell it to.

                              Z-Bot CoreXY Build | Thingiverse Profile

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

                                @phaedrux How to check if my printer was originally shipped with RepRapFirmware?

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

                                  @phaedrux I just checked the Filastruder website where I bought the board from, it is shipped with RepRapFirmware. Then which predefined template should I choose? Thank you!

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

                                    What kind of a printer do you have?

                                    Z-Bot CoreXY Build | Thingiverse Profile

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

                                      @phaedrux I use an extruder to print. I only need to board to control the motion system, extrusion and hot end temperature. The hot bed has it's own controlling system.

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

                                        Maybe take a look at some of these guides to get a feel for how the configuration system works.

                                        https://duet3d.dozuki.com/Wiki/ConfiguringRepRapFirmwareCartesianPrinter

                                        https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+1:+Wiring/37

                                        Z-Bot CoreXY Build | Thingiverse Profile

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

                                          @phaedrux The frame for the movement system is a cartesian C-beam machine like this:https://openbuildspartstore.com/openbuilds-c-beam-machine/

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

                                            Where are you getting stuck in the config tool?

                                            https://configurator.reprapfirmware.org/

                                            Z-Bot CoreXY Build | Thingiverse Profile

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