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

    big box madness

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    6
    53
    4.3k
    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.
    • dc42undefined
      dc42 administrators
      last edited by dc42

      Please post your config.g file.

      When you said "have also tried all the motors on another mother board and they're working fine.", was that with the same cables, or different cables?

      Duet WiFi hardware designer and firmware engineer
      Please do not ask me for Duet support via PM or email, use the forum
      http://www.escher3d.com, https://miscsolutions.wordpress.com

      magdiundefined 1 Reply Last reply Reply Quote 0
      • magdiundefined
        magdi @dc42
        last edited by

        @dc42 ; have taken it from the bigbox forum page as the reprap online configuration was also not working.
        and yes used the same wires and all.

        Configuration file for BigBox 3D printer

        ; Communication and general
        M111 S0 ; Debug off
        M550 PBigBox ; Machine name and Netbios name (can be anything you like)
        M551 Preprap ; Machine password (used for FTP)
        ;*** If you have more than one Duet on your network, they must all have different MAC addresses, so change the last digits
        M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xED ; MAC Address
        ;*** Wifi Networking
        M552 S1 ; Enable WiFi

        M555 P2 ; Set output to look like Marlin
        M575 P1 B57600 S1 ; Comms parameters for PanelDue
        ; Movement section
        M569 P0 S1 ; Drive 0 goes forwards (change to S0 to reverse it)
        M569 P1 S0 ; Drive 1 goes forwards
        M569 P2 S0 ; Drive 2 goes forwards
        M569 P3 S1 ; Drive 3 goes forwards
        M569 P4 S1 ; Drive 4 goes forwards
        M574 X1 Y1 Z1.2 S1 ; set endstop configuration (X and Y endstops only, at low end, active high)
        M906 X800 Y600 Z800 E600:600 ; Set motor currents (mA)
        M201 X800 Y800 Z15 E1000 ; Accelerations (mm/s^2)
        M203 X15000 Y15000 Z100 E3600 ; Maximum speeds (mm/min)
        M566 X600 Y600 Z30 E20 ; Minimum speeds mm/minute
        M208 X300 Y200 Z200 ; set axis maxima (adjust to suit your machine)
        M208 X0 Y0 Z-0.2 S1 ; set axis minimum (adjust to make X=0 and Y=0 the edge of the bed)
        M92 X160 Y360 Z1600 ; Set axis steps/mm
        M92 E417.5:417.5 ; Set extruder steps per mm
        G21 ; Work in millimetres
        G90 ; Send absolute coordinates...
        M83 ; ...but relative extruder moves
        M350 X16 Y16 E16 I1 ; Set 16x microstepping with interpolation

        ; Z probe section
        M558 P1 X0 Y0 Z1 H3 F200 T5000 ; Smart IR Z probe, used for homing Z axis, dive height 3mm, probe speed 200mm/min, travel speed 5000mm/min
        G31 Z1.4 P500 ; Set the probe height and threshold (put your own values here)

        ; Heater and thermistor section
        ;*** If you have a Duet board with 1K thermistor series resistors, change R4700 to R1000 to the following M305 commands
        M305 P0 T100000 B4388 R4700 H30 L0 ; Put your own H and/or L values here to set the bed thermistor ADC correction
        M305 P1 X200; B4388 R4700 H30 L0 ; Put your own H and/or L values here to set the first nozzle thermistor ADC correction
        M305 P2 X201; H0 L0 ; Put your own H and/or L values here to set the second nozzle thermistor ADC correction
        M301 H1 P10 I0.10 D100 T0.50 S1.0 ; PID settings for extruder 0
        M301 H2 P10 I0.10 D100 T0.50 S1.0 ; PID settings for extruder 1
        M570 S120 ; Increase to allow extra heating time if needed

        ; Fans
        M106 P0 F10 ; Fix for Bigbox Blower
        M106 P1 T40 H1
        M106 P2 T40 H2

        ; Tool definition section
        M563 P0 D0 H1 ; Define tool 0 to use extruder drive 0 and heater 1
        G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures
        ;*** If you have a dual-nozzle build, un-comment the following 2 lines
        M563 P1 D1 H2 ; Define tool 1
        G10 P1 S0 R0 ; Set tool 1 operating and standby temperatures

        ; Bed probe section (not needed if you use a bed.g file)
        ;*** Adjust the XY coordinates in the following M557 commands to suit your build and the position of your Z probe
        M557 P0 X60 Y0 ; Four...
        M557 P1 X60 Y165 ; ...probe points...
        M557 P2 X200 Y165 ; ...for bed...
        M557 P3 X200 Y0 ; ...levelling
        ;M557 P4 X141 Y82.5 ; 5th probe point for levelling (un-comment this to get a 5th point at the centre of the bed)

        ; Epilogue
        ;*** If you are using axis compensation, put the figures in the following command
        M556 S78 X0 Y0 Z0 ; Axis compensation here
        T0

        dc42undefined Phaedruxundefined 2 Replies Last reply Reply Quote 0
        • Vetiundefined
          Veti
          last edited by

          @magdi said in big box madness:

          M350

          why have you got no M350 for Z?

          1 Reply Last reply Reply Quote 0
          • Vetiundefined
            Veti
            last edited by

            @magdi said in big box madness:

            M92 X160 Y360

            also are your steps correct for y?
            This if from the github marlin config
            define DEFAULT_AXIS_STEPS_PER_UNIT {160,180,1600,417.5} // default steps per unit for Titan BigBox

            magdiundefined 1 Reply Last reply Reply Quote 0
            • magdiundefined
              magdi @Veti
              last edited by

              @veti cheers for the help, have tried to change it still the same error messages

              Warning: motor phase A may be disconnected reported by driver(s) 1
              Warning: motor phase B may be disconnected reported by driver(s) 1

              Vetiundefined 1 Reply Last reply Reply Quote 0
              • dc42undefined
                dc42 administrators @magdi
                last edited by

                @magdi said in big box madness:

                M906 X800 Y600 Z800 E600:600 ; Set motor currents (mA)

                I am not familiar with the BigBox, but 600mA for the Y motor current sounds rather low to me. What motors are you using?

                Duet WiFi hardware designer and firmware engineer
                Please do not ask me for Duet support via PM or email, use the forum
                http://www.escher3d.com, https://miscsolutions.wordpress.com

                magdiundefined 1 Reply Last reply Reply Quote 0
                • magdiundefined
                  magdi @dc42
                  last edited by magdi

                  @dc42 have changed to the x axis 800 amount as this works for the X but still no fix

                  • just upped to 1A still no movment of the Y and Z, X still runs though at 1A
                    motors are 42BYGHM809 Wantai 1.7A
                  1 Reply Last reply Reply Quote 0
                  • Vetiundefined
                    Veti @magdi
                    last edited by

                    @magdi said in big box madness:

                    Warning: motor phase A may be disconnected reported by driver(s) 1
                    Warning: motor phase B may be disconnected reported by driver(s) 1

                    Check the cable. if both phases are not connected no wonder that it does not move.

                    1 Reply Last reply Reply Quote 0
                    • dc42undefined
                      dc42 administrators
                      last edited by dc42

                      I suggest you test the motors using G1 S2 moves at low speeds (send G91 first to put axis motion in relative mode).

                      If you plug the X motor into the Y or Z output, can you get it to move? Power down before connecting or disconnecting motors.

                      Duet WiFi hardware designer and firmware engineer
                      Please do not ask me for Duet support via PM or email, use the forum
                      http://www.escher3d.com, https://miscsolutions.wordpress.com

                      1 Reply Last reply Reply Quote 0
                      • magdiundefined
                        magdi
                        last edited by

                        Right im with you guys. Am now in the process of testing all the wires and getting the stepper sorted will then re-wire and hopefully be sorted.

                        Cheers for the help will confirm once complete

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

                          @magdi said in big box madness:

                          M574 X1 Y1 Z1.2 S1 ; set endstop configuration (X and Y endstops only, at low end, active high)

                          Z1.2? I don't think that's valid.

                          Z-Bot CoreXY Build | Thingiverse Profile

                          1 Reply Last reply Reply Quote 0
                          • Ryan Lockundefined
                            Ryan Lock
                            last edited by

                            Hi @magdi,

                            Thanks for posting your config.g file and the model of your motor. You want to see it to no more than 1.45A.

                            That error normally relates to a wire being disconnected or not properly connected. As DC42 suggested try the known working X-Axis wire with either the Y or Z-Axis motor.

                            If that fails try plugging the known working X-Axis wire AND motor into the Y-Axis or Z-Axis port.

                            Best Regards

                            Ryan Lock

                            magdiundefined 1 Reply Last reply Reply Quote 0
                            • magdiundefined
                              magdi
                              last edited by magdi

                              So I've unplugged every wire on the motherboard, tested everything on another motherboard including all the wires for steppers and the steppers that I've been using. They all work there. Now I plug one motor into the duet (currently working with z motors) and nothing happens. Have tried every combination of pin connection and everything ugh.
                              I'm just pulling my hair out at this point im so confused.

                              What have I done wrong?!

                              1 Reply Last reply Reply Quote 0
                              • dc42undefined
                                dc42 administrators
                                last edited by dc42

                                I already made a suggestion to try to pin down the problem, but you appear to have ignored it.

                                Duet WiFi hardware designer and firmware engineer
                                Please do not ask me for Duet support via PM or email, use the forum
                                http://www.escher3d.com, https://miscsolutions.wordpress.com

                                magdiundefined 1 Reply Last reply Reply Quote 0
                                • magdiundefined
                                  magdi @dc42
                                  last edited by magdi

                                  @dc42 have tried that i get the same error for connection sorry I didn't reply to it so that's with putting the x axis motor on another axis.

                                  I was just doing what you then later said but I tested all the hardware to see if it worked first

                                  1 Reply Last reply Reply Quote 0
                                  • magdiundefined
                                    magdi @Ryan Lock
                                    last edited by

                                    @ryan-lock thanks for the advice. I have tried moving around the x axis motor to other ports, with and without the same wire. And using that working X wire on other motors. Still the same errors unfortunately. Even got some new wires and the same issue 😞

                                    1 Reply Last reply Reply Quote 0
                                    • dc42undefined
                                      dc42 administrators
                                      last edited by dc42

                                      Let's start with getting the X motor working when it is connected to the Y motor output. Please add the following command to the start of config.g:

                                      M584 X1 Y0

                                      That will swap the X and Y motor outputs over. Also connect the X motor to the Y motor output, and vice versa. Then try moving X and Y again. If the X motor (connected to the Y motor output) moves correctly when you command X movement, but the Y motor (connected to the X motor output) doesn't, then it is a configuration problem. If the X motor stops working but the Y motor starts working, then it is a problem with the Y driver.

                                      Duet WiFi hardware designer and firmware engineer
                                      Please do not ask me for Duet support via PM or email, use the forum
                                      http://www.escher3d.com, https://miscsolutions.wordpress.com

                                      1 Reply Last reply Reply Quote 0
                                      • magdiundefined
                                        magdi
                                        last edited by

                                        @dc42 said in big box madness:

                                        M584 X1 Y0

                                        right i have tried what you have advised. problem still persists with the Y driver, driving the x axis.

                                        1 Reply Last reply Reply Quote 0
                                        • dc42undefined
                                          dc42 administrators
                                          last edited by

                                          Thanks. Please ask your supplier to replace your Duet.

                                          Duet WiFi hardware designer and firmware engineer
                                          Please do not ask me for Duet support via PM or email, use the forum
                                          http://www.escher3d.com, https://miscsolutions.wordpress.com

                                          magdiundefined 1 Reply Last reply Reply Quote 0
                                          • magdiundefined
                                            magdi @dc42
                                            last edited by

                                            @dc42 so new board, new problems.

                                            I cant seem to get the end stops to now work.
                                            motors are moving fine but the end stops aren't doing their bit.

                                            have a 2 wire endstop so ive wired them on both ends of the endstop. (light starts off as red and then when the stops are engaged turns off) . have tried both X1 Y1 and X0 Y0 and the current code also on my endstop in config.g

                                            M574 X2 Y2 S1 ; Set active high endstops

                                            also i have an E3d hot end and am a bit confused about using the pt1000 amps? ive connected them currently straight to the duet but temps are like 2000c.

                                            magdiundefined Vetiundefined 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Unless otherwise noted, all forum content is licensed under CC-BY-SA