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

    Trying to get IDEX up and running, need help U3 not working

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    2
    17
    1.6k
    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

      The U endstop is at the high end of the axis, therefore you need U2 in the M574 command not U1.

      Also make sure you have set up the axis limits in the M208 S0 and M208 S1 commands.

      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
      • ronnien59undefined
        ronnien59
        last edited by

        I have changed to U2 earlier but was still having issues. I think i had found the problem in the max limit set up but i lost my WiFi and have been trying to get the duet wifi working. I have another duet WiFi and have updated to latest and setup the macro. i am getting a bad command in M587:
        M552 S0
        G4 P1000
        M587 S”Ronald’s Wi-Fi Network” P”lead9376”

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

          Which firmware are you running? Use M115 to check. If it's 1.20beta8 then this is a known bug, in which case please upgrade to 1.20beta8+1.

          Please note, the single-quote character in your ssid will need to be sent as two single quote characters in the M587 command. This is because within a double-quoted string, one single-quote character means force the following character to lowercase.

          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
          • ronnien59undefined
            ronnien59
            last edited by

            I am using the 1.20beta8+1.

            SENT: m115
            READ: FIRMWARE_NAME: RepRapFirmware for Duet WiFi FIRMWARE_VERSION: 1.20beta8+1 ELECTRONICS: Duet WiFi 1.0 FIRMWARE_DATE: 2017-11-18
            READ: ok

            Not sure what you mean about the single quote. Do i need to do the following:

            M552 S0
            G4 P1000
            M587 S”Ronald”s Wi-Fi Network” P”lead9376”

            I have tried this and it still returns:

            SENT: M98 P/macros/SetNetwork
            READ: WiFi module started
            READ: M587: Bad or missing parameter
            READ: ok

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

              I think you may be using the wrong double-quote characters because the ones in your post are angled. Also, between the letter d and letter s you need two single quote characters, not one double quote. Like this:

              M587 S"Ronald''s Wi-Fi Network" P"lead9376"

              Cut and paste that line, and try it. I just tried it on one of my printers and it worked. When you send M587 without parameters to list remembered networks, you should see this:

              Ronald's Wi-Fi Network IP=0.0.0.0 GW=0.0.0.0 NM=0.0.0.0

              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
              • ronnien59undefined
                ronnien59
                last edited by

                Still not working. I will try again later. I may change my SSID to a simpler name and try again.

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

                  Are you now using the correct double quote characters in your macro?

                  You may find it easier to send the commands via USB from a terminal emulator program.

                  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
                  • ronnien59undefined
                    ronnien59
                    last edited by

                    Yes i think that is the problem. I have just received my Duet ethernet and i am connected. I have everything homing but i cannot get the U axis to move once homed. Here is my config on my movement section.
                    ; Movement section
                    M569 P0 S1 ; Drive 0 goes forwards (change to S0 to reverse it)
                    M569 P1 S0 ; Drive 1 goes forwards
                    M569 P2 S1 ; Drive 2 goes forwards
                    M569 P3 S1 ; Drive 3 goes forwards
                    M569 P4 S0 ; Drive 4 goes forwards
                    M569 P5 S1 ; Drive 5 goes forwards
                    M584 X0 Y1 Z2 U5 E3:4 ; Create U axis for second X carriage before we try to configure it
                    M574 X1 Y1 U1 Z0 S0 ; Set endstop configuration (X and Y endstops at low end, U endstop at high end, active high, no Z endstop)
                    M906 X800 Y800 U800 Z800 E1000 ; Set motor currents (mA)
                    M201 X800 Y800 U800 Z15 E1000 ; Accelerations (mm/s^2)
                    M203 X15000 Y15000 U15000 Z100 E3600 ; Maximum speeds (mm/min)
                    M566 X600 Y600 U600 Z30 E20 ; Maximum jerk speeds mm/minute
                    M208 X280 Y304 U280 Z200 ; Set axis maxima (adjust to suit your machine)
                    M208 X0 Y0 U0 Z-280 S1 ; Set axis minimum (adjust to make X=0 and Y=0 the edge of the bed)
                    M92 X80.62 Y80.08 U80.62 Z400 ; Set axis steps/mm
                    M92 E420:420 ; Set extruder steps per mm
                    M350 X16 Y16 U16 Z16 E16 I1 ; Set 16x microstepping with interpolation
                    G21 ; Work in millimetres
                    G90 ; Send absolute coordinates…
                    M83 ; ...but relative extruder moves

                    Am i missing something?

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

                      What driver are you using for the 6th driver (the U motor): the first driver on a DueX2 or DueX5, or something else?

                      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
                      • ronnien59undefined
                        ronnien59
                        last edited by

                        it is on the DueX5

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

                          In this command:

                          M574 X1 Y1 U1 Z0 S0 ; Set endstop configuration (X and Y endstops at low end, U endstop at high end, active high, no Z endstop)

                          you have specified U1 which means that the U endstop is at the low end of the U axis. However, the U endstop on an IDEX machine is normally at the high end. So use U2 in that command.

                          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
                          • ronnien59undefined
                            ronnien59
                            last edited by

                            That has solved the problem. I can now start to calibrate. Thanks so very much for the help. I thought i had changed it and then changed it back for some reason.

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