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

    firmware 3.0 and more

    Scheduled Pinned Locked Moved Unsolved
    Duet Hardware and wiring
    firmware 3.0 and more
    4
    19
    449
    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.
    • droftartsundefined
      droftarts administrators @A Former User
      last edited by

      @ooly said in firmware 3.0 and more:

      M574 Z2 S1 P"null" ; configure active-high endstop for high end on Z via pin null

      Where is the Z endstop plugged in? Most likely, change the above to
      M574 Z2 S1 P"zstop"

      Ian

      Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

      A Former User? 1 Reply Last reply Reply Quote 0
      • A Former User?
        A Former User @droftarts
        last edited by

        @droftarts
        Ian, thanks.
        I changed 574 as you suggested but I am still not there.

        in a delta there are no endstops for the horizontal "x" and "y", only
        z probe for the bottom, and of course three XYZ endstops for the three towers, all on the top side.
        on the other end, in the delta config tool, there is a clear difference between x, y, to that of Z.
        kindly explain. thanks.

        droftartsundefined 1 Reply Last reply Reply Quote 0
        • droftartsundefined
          droftarts administrators @A Former User
          last edited by droftarts

          @ooly What is "still not there"?
          You need an endstop on each of the three delta axes, X, Y and Z. These are not referring to 3-dimensional space (as they might in a Cartesian machine), it's referring to the three delta towers. X, Y and Z are just axis labels. So you need to have a 3 endstops defined with M574. Check endstops are assigned to the correct axis and working correctly by sending M119 while depressing each switch in turn.

          The homedelta.g just homes these three axes at the maximum end. The M665 'H' parameter in config.g (or config_override.g) sets the homed height. The actual 'Z-probe' is used for the Delta auto calibration. See https://duet3d.dozuki.com/Wiki/Calibrating_a_delta_printer#Section_Setting_up_your_initial_delta_parameters

          Ian

          Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

          A Former User? 1 Reply Last reply Reply Quote 0
          • A Former User?
            A Former User @droftarts
            last edited by

            @droftarts
            I know and the three end switches are in place, but m119 brings back all at "max stop" when they are all midway.
            my setting is m574 X2 S1 P"xstop" etc. tried x1 instead of x2 and it says x at "min stop"

            droftartsundefined 1 Reply Last reply Reply Quote 0
            • droftartsundefined
              droftarts administrators @A Former User
              last edited by

              @ooly What does it say when you press the endstop and send M119? Most probably "not stopped". If so, it means you need to invert the logic of the endstop, as you have yours wired Normally Open, rather than Normally Closed.

              Either change M574 to (note exclamation mark in pin definition):

              M574 X2 S1 P"!xstop"                           ; configure active-high endstop for high end on X via pin !xstop
              M574 Y2 S1 P"!ystop"                           ; configure active-high endstop for high end on Y via pin !ystop
              M574 Z2 S1 P"!zstop"                           ; configure active-high endstop for high end on Z via pin !zstop
              

              Or rewire your endstops to Normally Closed, which is preferred as they are less susceptible to interference. See https://duet3d.dozuki.com/Wiki/Connecting_endstop_switches#Section_Microswitch

              Probably in your old RRF 2 config.g they were defined as M574 X2 Y2 Z2 S0, where S0 means they are inverted.

              Ian

              Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

              1 Reply Last reply Reply Quote 0
              • A Former User?
                A Former User
                last edited by

                ok, the ! did it. thanks
                another problem: the status display is totally different from my old one in the 2.1 version. in the old one I could change the values of z. in this one I cannot so z is stuck at the top home value so I can't move it. is there a way to change z value in the status window? or alternatively return to the old window?

                A Former User? droftartsundefined 3 Replies Last reply Reply Quote 0
                • A Former User?
                  A Former User @A Former User
                  last edited by

                  @ooly
                  another problem: while commanding movements in the dashboard, speed is not constrained by the "max speed" setting in config.g.
                  how do I limit these movements? thanks

                  fcwiltundefined Phaedruxundefined 2 Replies Last reply Reply Quote 0
                  • fcwiltundefined
                    fcwilt @A Former User
                    last edited by

                    @ooly said in firmware 3.0 and more:

                    @ooly
                    another problem: while commanding movements in the dashboard, speed is not constrained by the "max speed" setting in config.g.
                    how do I limit these movements? thanks

                    With firmware 3.3 the M203 settings control the max speed of those movements.

                    Frederick

                    Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                    1 Reply Last reply Reply Quote 0
                    • droftartsundefined
                      droftarts administrators @A Former User
                      last edited by

                      @ooly said in firmware 3.0 and more:

                      another problem: the status display is totally different from my old one in the 2.1 version. in the old one I could change the values of z. in this one I cannot so z is stuck at the top home value so I can't move it. is there a way to change z value in the status window? or alternatively return to the old window?

                      If you mean change the jog amounts, right click on the number you want to change. See https://duet3d.dozuki.com/Wiki/Duet_Web_Control_v2_and_v3_(DWC)_Manual#Section_Adjusting_movement_amounts

                      another problem: while commanding movements in the dashboard, speed is not constrained by the "max speed" setting in config.g.
                      how do I limit these movements? thanks

                      I very much doubt that. You have your M203 set as:
                      M203 X18000.00 Y18000.00 Z18000.00 E1200.00 ; set maximum speeds (mm/min)
                      18000 mm/min = 300mm/s. Are you saying it goes faster than that?!

                      Ian

                      Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                      1 Reply Last reply Reply Quote 0
                      • droftartsundefined
                        droftarts administrators @A Former User
                        last edited by

                        @ooly said in firmware 3.0 and more:

                        another problem: the status display is totally different from my old one in the 2.1 version. in the old one I could change the values of z. in this one I cannot so z is stuck at the top home value so I can't move it. is there a way to change z value in the status window? or alternatively return to the old window?

                        Ah, just worked out what you mean. In DWC v1 you could click on the X, Y or Z position and enter a new value for the axis to move to. I think this was removed as it was too easy to upset a print by accidentally clicking on it. You need to use the jog buttons, or send the gcode (ie G1 Z50) to move the nozzle to a specific location.

                        If you've upgraded to RRF 3.3, I don't think DWC 1 will work any more as the communication protocols have changed.

                        Ian

                        Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                        1 Reply Last reply Reply Quote 0
                        • Phaedruxundefined
                          Phaedrux Moderator @A Former User
                          last edited by

                          @ooly said in firmware 3.0 and more:

                          @ooly
                          another problem: while commanding movements in the dashboard, speed is not constrained by the "max speed" setting in config.g.
                          how do I limit these movements? thanks

                          If you're talking about the displayed max speed while homing being higher than you'd expect that's a display anomaly due to the way delta kinematics speed is calculated.

                          Z-Bot CoreXY Build | Thingiverse Profile

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