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

    Auto Tool Height Measurement

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    5
    35
    1.8k
    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.
    • fcwiltundefined
      fcwilt @Terry
      last edited by

      @Terry said in Auto Tool Height Measurement:

      Endstops would be min and max travel indicators and would be continuously active unless explicitly disabled so they could stop motion before a physical collision

      You can do that with triggers. From one of my printers:

      ; ****************************************************************************************************
      ; external buttons (P = pin #, T = trigger #, R = when to trigger (0 = always, 1 = printing), S = what edge (I->A = 1, A->I = 0, -1 = ignored)
      ; --- T0 does emergency stop
      ; --- T1 does pause (see M25)
      ; --- T# runs macro trigger#.g
      ; ****************************************************************************************************
      
      M950 J2 C"!^duex.e6stop"
      M581 P2 T0 R0 S0			; does emergency stop
      
      M950 J1 C"^e0stop"
      M581 P1 T2 R0 S0			; runs trigger2 which does M999 (board reset)
      

      Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

      Terryundefined 1 Reply Last reply Reply Quote 0
      • fcwiltundefined
        fcwilt @Terry
        last edited by

        @Terry said in Auto Tool Height Measurement:

        Ok, setting and resetting the endstops in the macro allows me to sense the button press but unfortunately G1 H4 doesn't do what I expected. It seems that what it does is travel until the switch is triggered and then sets the user position to the value of the move that was commanded.

        I think I did not understand what you were saying.

        With G1 H4 and G1 H3 the axis is at some position when the end stop is triggered - this position should be what appears in the DWC.

        Does that not happen?

        Frederick

        Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

        1 Reply Last reply Reply Quote 0
        • Terryundefined
          Terry
          last edited by Terry

          With both G1 H3 and G1 H4, the machine and user positions are overwritten as soon as the switch is triggered. In absolute mode, the axis value is set equal to the destination value that was commanded in the move. In relative mode, the axis position value is set to 1.

          So, for example, starting at machine coordinate V=50 and commanding G1 H4 V2, the axis will move towards V=2 but if the switch is pressed before it gets there, motion will stop and the current position of V will be declared to be V=2, changing the calibration.

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

            @fcwilt G60 wouldn't work because calibration is lost.

            fcwiltundefined 1 Reply Last reply Reply Quote 0
            • Terryundefined
              Terry @fcwilt
              last edited by

              @fcwilt Triggers can't stop motion in a controlled manner, so at best you can call an emergency stop and lose system calibration. This is why endstop circuitry needs to exist inside the motion control loop - the endstop triggers need to be interrupts that can cancel motion at very low latency without losing position.

              1 Reply Last reply Reply Quote 1
              • fcwiltundefined
                fcwilt @Terry
                last edited by

                @Terry said in Auto Tool Height Measurement:

                @fcwilt G60 wouldn't work because calibration is lost.

                How so?

                If you save the current position and then return to it how does that affect calibration?

                Frederick

                Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                1 Reply Last reply Reply Quote 0
                • Terryundefined
                  Terry
                  last edited by

                  G60 would store a position relative to the calibration referenced against the fixed endstop. Any move detecting the mobile endstop will cause the axis to re-reference against that position. Any subsequent G2 R would return to a saved position relative to the new calibration, so not the original absolute position in the machine framework.

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

                    @Terry said in Auto Tool Height Measurement:

                    G60 would store a position relative to the calibration referenced against the fixed endstop. Any move detecting the mobile endstop will cause the axis to re-reference against that position. Any subsequent G2 R would return to a saved position relative to the new calibration, so not the original absolute position in the machine framework.

                    Under firmware 3.2.2 I did a H3 move.

                    When the end stop was triggered the movement stopped and the M208 setting for Z min was updated using the Z position at the moment the end stop was triggered.

                    How does that cause the reference for the axis to change?

                    Frederick

                    Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                    1 Reply Last reply Reply Quote 0
                    • Terryundefined
                      Terry
                      last edited by

                      But did your machine and user position for that axis also change?

                      1 Reply Last reply Reply Quote 0
                      • Terryundefined
                        Terry
                        last edited by

                        This will only be visible if you are testing against an endstop that is different to the one you referenced from in your homing move...

                        fcwiltundefined 1 Reply Last reply Reply Quote 0
                        • Terryundefined
                          Terry
                          last edited by

                          For clarity, I home in the positive direction (but physically downwards) for my axis and reference this as the highest axis distance. I then swap out the high end endstop for the low end endstop and probe in the negative direction (physically upwards) until the switch hits the tool.

                          This recalibrates the axis position to the target value that was in the move command, losing the information about how far I have actually moved in the original coordinate system.

                          1 Reply Last reply Reply Quote 1
                          • Terryundefined
                            Terry
                            last edited by

                            Ideally, what is needed is a generic probing command that supports motion on any axis. This would be necessary for a 3 degrees of freedom probe mounted in a spindle if you wanted to touch off on a workpiece in X, Y and Z, in any case.

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

                              @Terry said in Auto Tool Height Measurement:

                              This will only be visible if you are testing against an endstop that is different to the one you referenced from in your homing move...

                              Different in what way?

                              I don't think it is possible to have more than one end stop configured at the same time for a given axis - aside from the situation where you have multiple Z steppers with an end stop for each.


                              I did this:

                              I moved Z down to 100 and issued G91 G1 H3 Z-150.

                              I waited a bit and triggered the end stop - it was around 47.

                              M208 now reported min of 47. I reset Z min with M208 Z0:240 which is correct for my printer.

                              Moving to 0 and the end stop was just triggered as it should be.


                              This I did this:

                              I moved Z down to 100 and issued G91 G1 H4 Z-150.

                              I waited a bit and triggered the end stop - it was around 53.

                              Moving to 0 and the end stop was just triggered as it should be.

                              Nothing else appears to have changed.


                              Frederick

                              Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                              1 Reply Last reply Reply Quote 0
                              • Terryundefined
                                Terry
                                last edited by

                                Just found G38.2, which appears to be more suitable.

                                After testing with

                                M558 K1 P8 C"!1.io2.in" F1000
                                G38.2 V1 P1
                                

                                I get the same problem! There appears to be a bug where the machine and user positions are always updated to be equal to the requested destination move, even though the move was interrupted by an endstop or probe trigger.

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

                                  @Terry said in Auto Tool Height Measurement:

                                  Just found G38.2, which appears to be more suitable.

                                  After testing with

                                  M558 K1 P8 C"!1.io2.in" F1000
                                  G38.2 V1 P1
                                  

                                  I get the same problem! There appears to be a bug where the machine and user positions are always updated to be equal to the requested destination move, even though the move was interrupted by an endstop or probe trigger.

                                  Perhaps so - because it did not happen in my testing - and the "home" position (which for my testing was 0) remained unchanged.

                                  I know that 3.2.0 had a bug which prevented my 3 Z stepper printer (each stepper had its own end stop) from homing.

                                  Frederick

                                  Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                                  1 Reply Last reply Reply Quote 0
                                  • Terryundefined
                                    Terry
                                    last edited by

                                    Same bug is present on 3.2.2

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

                                      @Terry said in Auto Tool Height Measurement:

                                      Same bug is present on 3.2.2

                                      I wonder why you are seeing that and I'm not.

                                      What do your end stop configuration look like for the normal axis end stop and this switch end stop.

                                      Thanks.

                                      Frederick

                                      Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                                      1 Reply Last reply Reply Quote 0
                                      • Terryundefined
                                        Terry
                                        last edited by

                                        Axis setup is:

                                        M569 P1.1 S0
                                        M584 V1.1
                                        M208 V0:100
                                        M92 V400
                                        M350 V16 I1	
                                        M566 V400
                                        M203 V10000
                                        M201 V6000
                                        M906 V1500
                                        M574 V2 S1 P"1.io1.in"
                                        

                                        Test macro is:

                                        M558 K1 P8 C"!1.io2.in" F1000
                                        G38.2 V1 P1
                                        
                                        M117 {move.axes[4].userPosition}
                                        
                                        fcwiltundefined 1 Reply Last reply Reply Quote 0
                                        • fcwiltundefined
                                          fcwilt @Terry
                                          last edited by

                                          @Terry said in Auto Tool Height Measurement:

                                          Axis setup is:

                                          M569 P1.1 S0
                                          M584 V1.1
                                          M208 V0:100
                                          M92 V400
                                          M350 V16 I1	
                                          M566 V400
                                          M203 V10000
                                          M201 V6000
                                          M906 V1500
                                          M574 V2 S1 P"1.io1.in"
                                          

                                          Test macro is:

                                          M558 K1 P8 C"!1.io2.in" F1000
                                          G38.2 V1 P1
                                          
                                          M117 {move.axes[4].userPosition}
                                          

                                          I will have to test using a probe.

                                          Why are you echoing the userPosition instead of the machinePosition?

                                          Frederick

                                          Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                                          1 Reply Last reply Reply Quote 0
                                          • Terryundefined
                                            Terry
                                            last edited by

                                            Just as a legacy of testing that machinePosition and userPosition were the same, which they are in this instance.

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