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

    Genuine BLTouch 3.1 reading "1000" in Z probe on web control

    Scheduled Pinned Locked Moved Solved
    IR Height Sensor
    2
    10
    529
    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.
    • djstephenson1undefined
      djstephenson1
      last edited by

      Hello all,

      I am having a lot issues with my BL Touch. I just got it in from filamentone, and it is having funny behavior. The blue LED does not come on at all under any circumstance. Nor will the probe deploy or retract when I press "home all" or "home z."

      I have also wired it per the duet dozuki, and specifically its section for the Duet Wifi.

      When I run my BL Touch test macro it works fine. The probe deploys and retracts as it is supposed to.

      I am running it on a Duet 2 Wifi on the latest firmware build (3.0). My x and y axes are sensorless, if that helps.

      Attached are my config, config-override, deployprobe, retractprobe, and bed files.

      Thanks for everyone's help!

      retractprobe.g homez.g homey.g homex.g homeall.g deployprobe.g config-override.g config.g bed.g

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

        You said that "deployprobe.g" (and retract) work when invoked by you. That's good. That verifies a lot of things. That means they are not being 'called' when Z is homing.

        Your homez.g (and appropriate sub-section of homeall.g) need to be using G30 to probe. Example:

        ; Home Z Axis
        
        G90 G1 X150 Y150 F10000   ; Move to the center of the bed
        
        M564 H0                   ; Just in case bed is touching probe at start. 
        G91                       ;
        G1 Z1 F50                 ;
        M564 H1                   ;
        G90                       ;
        
        M280 P0 S160             ; And reset the probe, again, just in case. 
        
        M558 F500                ; Set the probing speed
        G30
        M558 F50                 ; Set a slower probing speed
        G30
        
        

        Delta / Kossel printer fanatic

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

          P.S. It is a "style" thing... no right or wrong answer... but I prefer my homeall just call the individual home files, so that I never have to change something (like migrating to G30) in two places:

          homeall.g

          ; Home y, x, z, and Toolchanger Lock axes
          
          G91 G1 Z5 F800 H2           ; Lift z so we don't crash
          M98 P"homey.g"
          M98 P"homex.g"
          M98 P"homeu.g"
          M98 P"homez.g"
          

          Delta / Kossel printer fanatic

          djstephenson1undefined 3 Replies Last reply Reply Quote 0
          • djstephenson1undefined
            djstephenson1 @Danal
            last edited by

            @Danal Any suggestion is good. I will give this a shot and report back. Thanks!

            1 Reply Last reply Reply Quote 0
            • djstephenson1undefined
              djstephenson1 @Danal
              last edited by

              @Danal When I tried your files, I received this error: "G28 Z

              Error: Z probe already triggered at start of probing move"

              I did restart my machine once I changed the files.

              1 Reply Last reply Reply Quote 0
              • djstephenson1undefined
                djstephenson1
                last edited by

                I just discovered a faulty dupont jumper. I suspect this is the problem!

                1 Reply Last reply Reply Quote 0
                • djstephenson1undefined
                  djstephenson1
                  last edited by

                  I swapped the wire, and still the same problem. Still reading "1000." It was the white wire that was bad.

                  1 Reply Last reply Reply Quote 0
                  • djstephenson1undefined
                    djstephenson1 @Danal
                    last edited by

                    @Danal I got it! my white wire had a bad crimp.

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

                      Fantastic!!

                      Delta / Kossel printer fanatic

                      1 Reply Last reply Reply Quote 0
                      • djstephenson1undefined
                        djstephenson1
                        last edited by

                        @Danal said in Genuine BLTouch 3.1 reading "1000" in Z probe on web control:

                        One last thing-- I tried the stock config home all and home z files, and they did not properly work. Yours did work for me. Thanks, as I still needed those changes.

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