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

    z probe not referenced

    Scheduled Pinned Locked Moved Solved
    Firmware installation
    2
    25
    809
    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.
    • jay_s_ukundefined
      jay_s_uk @axiom
      last edited by

      @axiom then post the contents of your homeall.g file

      Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

      axiomundefined 1 Reply Last reply Reply Quote 0
      • axiomundefined
        axiom @jay_s_uk
        last edited by

        @jay_s_uk
        this is a standard feature that came with the dashboard... where can i find the content?

        jay_s_ukundefined axiomundefined 2 Replies Last reply Reply Quote 0
        • jay_s_ukundefined
          jay_s_uk @axiom
          last edited by

          @axiom on the system tab on the left hand side

          Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

          1 Reply Last reply Reply Quote 0
          • axiomundefined
            axiom @axiom
            last edited by

            @axiom ; homeall.g
            ; called to home all axes
            ;
            ; generated by RepRapFirmware Configuration Tool v3.3.12 on Wed Aug 24 2022 12:56:11 GMT+0200 (Mitteleuropäische Sommerzeit)
            G91 ; relative positioning
            G1 H2 Z5 F6000 ; lift Z relative to current position
            G1 H1 X-505 Y-505 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
            G1 H2 X5 Y5 F6000 ; go back a few mm
            G1 H1 X-505 Y-505 F360 ; move slowly to X and Y axis endstops once more (second pass)
            G1 H1 Z705 F360 ; move Z up stopping at the endstop
            G90 ; absolute positioning
            G92 Z700 ; set Z position to axis maximum (you may want to adjust this)

            ; Uncomment the following lines to lift Z after probing
            ;G91 ; relative positioning
            ;G1 Z5 F100 ; lift Z relative to current position
            ;G90 ; absolute positioning

            jay_s_ukundefined 1 Reply Last reply Reply Quote 0
            • jay_s_ukundefined
              jay_s_uk @axiom
              last edited by

              @axiom said in z probe not referenced:

              G1 H1 Z705 F360 ; move Z up stopping at the endstop
              G90 ; absolute positioning
              G92 Z700 ; set Z position to axis maximum (you may want to adjust this)

              you're trying to home using an endstop.
              To home with a probe you need to move to the position you want to probe, usually the middle of the bed and then use G30
              E.g.

              G1 X150 Y150
              G30
              

              Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

              axiomundefined 1 Reply Last reply Reply Quote 0
              • axiomundefined
                axiom @jay_s_uk
                last edited by

                @jay_s_uk
                I commented out lines 6 and 10 and added lines 11 and 12.
                Now the message appears: "G28 Error: Probe already triggered at start of probinge move

                here the new code:
                ; homeall.g
                ; called to home all axes
                ;
                ; generated by RepRapFirmware Configuration Tool v3.3.12 on Wed Aug 24 2022 12:56:11 GMT+0200 (Mitteleuropäische Sommerzeit)
                G91 ; relative positioning
                ;G1 H2 Z5 F6000 ; lift Z relative to current position
                G1 H1 X-505 Y-505 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
                G1 H2 X5 Y5 F6000 ; go back a few mm
                G1 H1 X-505 Y-505 F360 ; move slowly to X and Y axis endstops once more (second pass)
                ;G1 H1 Z705 F360 ; move Z up stopping at the endstop
                G1 X150 Y150
                G30
                G90 ; absolute positioning
                G92 Z700 ; set Z position to axis maximum (you may want to adjust this)

                ; Uncomment the following lines to lift Z after probing
                ;G91 ; relative positioning
                ;G1 Z5 F100 ; lift Z relative to current position
                ;G90 ; absolute positioning

                jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                • jay_s_ukundefined
                  jay_s_uk @axiom
                  last edited by

                  @axiom said in z probe not referenced:

                  ;G1 H2 Z5 F6000 ; lift Z relative to current position

                  this line is a good idea to have

                  @axiom said in z probe not referenced:

                  G92 Z700 ; set Z position to axis maximum (you may want to adjust this)

                  this line should be removed.

                  And what value does your probe show as having on the status screen?

                  Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                  axiomundefined 2 Replies Last reply Reply Quote 0
                  • axiomundefined
                    axiom @jay_s_uk
                    last edited by

                    @jay_s_uk now comes the message:
                    Error: Failed to enable endstops

                    nwe code:
                    ; homeall.g
                    ; called to home all axes
                    ;
                    ; generated by RepRapFirmware Configuration Tool v3.3.12 on Wed Aug 24 2022 12:56:11 GMT+0200 (Mitteleuropäische Sommerzeit)
                    G91 ; relative positioning
                    G1 H2 Z5 F6000 ; lift Z relative to current position
                    G1 H1 X-505 Y-505 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
                    G1 H2 X5 Y5 F6000 ; go back a few mm
                    G1 H1 X-505 Y-505 F360 ; move slowly to X and Y axis endstops once more (second pass)
                    ;G1 H1 Z705 F360 ; move Z up stopping at the endstop
                    G1 X150 Y150
                    G30
                    G90 ; absolute positioning
                    ;G92 Z700 ; set Z position to axis maximum (you may want to adjust this)

                    ; Uncomment the following lines to lift Z after probing
                    ;G91 ; relative positioning
                    ;G1 Z5 F100 ; lift Z relative to current position
                    ;G90 ; absolute positioning

                    1 Reply Last reply Reply Quote 0
                    • axiomundefined
                      axiom @jay_s_uk
                      last edited by

                      @jay_s_uk 0de0c762-777b-4177-be39-a80848910b34-grafik.png

                      jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                      • jay_s_ukundefined
                        jay_s_uk @axiom
                        last edited by

                        @axiom that shows that your probe is triggered already. what type of probe is it?

                        Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                        axiomundefined 1 Reply Last reply Reply Quote 0
                        • axiomundefined
                          axiom @jay_s_uk
                          last edited by

                          @jay_s_uk
                          a capacitive proximity sensor:
                          https://www.amazon.de/Heschen-kapazitiver-Näherungsschalter-Sensor-LJC18-A3-H-Z-Normalöfnung/dp/B071J6PXD1/ref=sr_1_5?__mk_de_DE=ÅMÅŽÕÑ&crid=1NG0J5PZMIZC4&keywords=kapazitiver+sensor&qid=1661366023&sprefix=kapizativer+sensor%2Caps%2C138&sr=8-5

                          i got the same for my little ender printer and it works since 2 years

                          jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                          • jay_s_ukundefined
                            jay_s_uk @axiom
                            last edited by

                            @axiom you may need to invert the signal
                            e.g. M558 P1 C"!zprobe.in"
                            but you should test it before trying to home with it

                            Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                            axiomundefined 1 Reply Last reply Reply Quote 0
                            • axiomundefined
                              axiom @jay_s_uk
                              last edited by

                              @jay_s_uk
                              now the z-axis moves down instead of up when homing...but it responds to my hand and stops

                              jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                              • jay_s_ukundefined
                                jay_s_uk @axiom
                                last edited by

                                @axiom you need to invert the direction of your Z axis then. It should be negative movement going up and positive going down

                                Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                                axiomundefined 1 Reply Last reply Reply Quote 0
                                • axiomundefined
                                  axiom @jay_s_uk
                                  last edited by

                                  @jay_s_uk And how do I do that?

                                  jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                                  • jay_s_ukundefined
                                    jay_s_uk @axiom
                                    last edited by

                                    @axiom Change the S value in each M569 for the Z drivers. If its 0 change it to 1 and vice versa

                                    Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                                    axiomundefined 1 Reply Last reply Reply Quote 0
                                    • axiomundefined
                                      axiom @jay_s_uk
                                      last edited by

                                      @jay_s_uk how do i know which ones are for the z-axis...since i connected two, i don't want them to work in opposite directions...that might break the motors

                                      jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                                      • jay_s_ukundefined
                                        jay_s_uk @axiom
                                        last edited by

                                        @axiom you've mapped the driver numbers in M584

                                        Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                                        axiomundefined 1 Reply Last reply Reply Quote 1
                                        • axiomundefined
                                          axiom @jay_s_uk
                                          last edited by

                                          @jay_s_uk you are super! it works... thanks for your patience!

                                          1 Reply Last reply Reply Quote 1
                                          • Phaedruxundefined Phaedrux marked this topic as a question
                                          • Phaedruxundefined Phaedrux has marked this topic as solved
                                          • First post
                                            Last post
                                          Unless otherwise noted, all forum content is licensed under CC-BY-SA