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

    Delta leveling problem

    Scheduled Pinned Locked Moved Solved
    Firmware installation
    6
    18
    602
    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.
    • ventu22undefined
      ventu22
      last edited by

      Hi,
      I have a problem with automatic calibration, the automatic procedure does not work, but the manual procedure starts.
      I used the online configurator and inserted the switch that I connected to the E0 endstop terminal.
      i have an anycubic predator,these are the configuration files
      config.g bed.g

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

        G29 S1
        G28

        those command should not be in the config.g

        G30 P15 X0 Y0 H0 Z-99999 S9

        please start out with S6 as that is the default. only if that does not give you the desired results should you change that.

        the automatic procedure does not work, but the manual procedure starts.

        i dont understand what you mean by automatic and manual procedure. can you elaborate.

        1 Reply Last reply Reply Quote 0
        • ventu22undefined
          ventu22
          last edited by

          sorry for my english, i try to explain myself.
          The automatic procedure does not work, when I try to start the procedure the axes go home and the nozzle is positioned 22mm from the bed, and the manual leveling procedure starts. but in the configurator I set the switch (original anycubic) to probe the bed to do the automatic leveling, I don't understand why it starts manually when everything must work automatically

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

            See my config files here https://github.com/jaysuk/Anycubic-Predator-Duet
            For a stock predator

            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
            • Danalundefined
              Danal
              last edited by

              @Veti said in Delta leveling problem:

              i dont understand what you mean by automatic and manual procedure. can you elaborate.

              I believe he means "manual" = "Prompts on the console".

              @ventu22 I believe your probe should be P5, not P4. I could be wrong... but it is simple enough to try.

              Delta / Kossel printer fanatic

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

                please execute M98 P"/sys/config.g" and post the output

                1 Reply Last reply Reply Quote 0
                • Dougal1957undefined
                  Dougal1957
                  last edited by Dougal1957

                  the issue is that you have defined the Probe input to be on the Z-Probe port but have it connected to the E0 end stop pins so the firmware can't find the probe.

                  ; Z-Probe
                  M558 P4 C"zprobe.in+zprobe.mod" H3 F120 T6000  ; set Z probe type to switch and the dive height + speeds
                  G31 P500 X0 Y0 Z16.0                             ; set Z probe trigger value, offset and trigger height
                  M557 R115 S20                                  ; define mesh grid
                  G29 S1
                  G28
                  
                  dc42undefined 1 Reply Last reply Reply Quote 0
                  • dc42undefined
                    dc42 administrators @Dougal1957
                    last edited by dc42

                    @Dougal1957 said in Delta leveling problem:

                    the issue is that you have defined the Probe input to be on the Z-Probe port but have it connected to the E0 end stop pins so the firmware can't find the probe.

                    ; Z-Probe
                    M558 P4 C"zprobe.in+zprobe.mod" H3 F120 T6000  ; set Z probe type to switch and the dive height + speeds
                    G31 P500 X0 Y0 Z16.0                             ; set Z probe trigger value, offset and trigger height
                    M557 R115 S20                                  ; define mesh grid
                    G29 S1
                    G28
                    

                    Additionally, there is no probe type 4 in RRF3. If the probe is some sort of switch or has an output like a switch, use either P5 (filtered) or P8 (filtered).

                    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
                    • ventu22undefined
                      ventu22
                      last edited by

                      i tried this;

                      ; Z-Probe
                      M558 P5 C"zprobe.in+zprobe.mod" H5 F120 T6000        ; set Z probe type to switch and the dive height + speeds
                      G31 P500 X0 Y0 Z16.0                           ; set Z probe trigger value, offset and trigger height
                      M557 R115 S20                                  ; define mesh grid
                      

                      the console sends this message; Error: Z probe already triggered at start of probing move

                      1 Reply Last reply Reply Quote 0
                      • Danalundefined
                        Danal
                        last edited by

                        Did you move the wire?

                        Also, you can invert an input with !. So try

                        C"!zprobe.in+zprobe.mod"

                        and variants thereof.

                        Delta / Kossel printer fanatic

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

                          You may also need to enable the pullup resistor by adding the ^ character in front of zprobe.in.

                          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
                          • ventu22undefined
                            ventu22
                            last edited by

                            thanks for now!
                            with;

                            C "! Zprobe.in + zprobe.mod"
                            

                            the probe collides on the bed

                            and with;

                            C "^ Zprobe.in + zprobe.mod"
                            

                            does not work
                            the probe is connected in E0 endstop terminal as written in the configurator (if I click the switch the led turns off (e0stp) )

                            Danalundefined 1 Reply Last reply Reply Quote 0
                            • ventu22undefined
                              ventu22
                              last edited by

                              I think the code C"zprobe.in+zprobe.mod" is wrong but that's what configurator inserts
                              Imm.png

                              Vetiundefined 1 Reply Last reply Reply Quote 0
                              • Danalundefined
                                Danal @ventu22
                                last edited by

                                @ventu22 said in Delta leveling problem:

                                thanks for now!
                                with;

                                C "! Zprobe.in + zprobe.mod"
                                

                                the probe collides on the bed

                                and with;

                                C "^ Zprobe.in + zprobe.mod"
                                

                                does not work
                                the probe is connected in E0 endstop terminal as written in the configurator (if I click the switch the led turns off (e0stp) )

                                Also try combinations. C "!Zprobe.in + zprobe.mod" and/or C "^!Zprobe.in + zprobe.mod"

                                Most importantly: Did you move the wire? You said you were connected to E0 Endstop pin. That will not work with the C"xxx" you've used. You must connect to the Zprobe connector.

                                D2Wring_LI.jpg

                                Delta / Kossel printer fanatic

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

                                  @ventu22 said in Delta leveling problem:

                                  I think the code C"zprobe.in+zprobe.mod" is wrong but that's what configurator inserts

                                  that is inserted because you selected it in the io mapping. there you change those pins.

                                  1 Reply Last reply Reply Quote 0
                                  • ventu22undefined
                                    ventu22
                                    last edited by

                                    how to connect the switch in the zprobe connector?

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

                                      its its a normal NO or NC switch one wire goes to gnd one to zprobe_in

                                      1 Reply Last reply Reply Quote 0
                                      • ventu22undefined
                                        ventu22
                                        last edited by

                                        work👍
                                        thank you all!!!!!

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