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

    Mistake True bed levelling G32

    Scheduled Pinned Locked Moved
    General Discussion
    3
    52
    2.1k
    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 @A Former User
      last edited by

      @sgk on my machines now I use Euclid probes https://euclidprobe.github.io/ that can be picked up when used.
      I have in the past used BFPtouches https://www.thingiverse.com/thing:2890290
      I'm not a fan of normal bltouches as they seem to cause too many issues for people.
      inductive can be good but you need to be able to adjust for temperature affecting the readings

      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

      A Former User? 2 Replies Last reply Reply Quote 0
      • A Former User?
        A Former User @jay_s_uk
        last edited by

        @jay_s_uk I agree with you the ones I had before I had bltouch and I also had only problems he only had the ir that it was fine but now that I am in duet 3 only problems too

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

          @jay_s_uk
          this Euclid probes looks good to me but too complicated for me already that I have trouble with an ir probe or bltouch

          jay_s_ukundefined 1 Reply Last reply Reply Quote 0
          • jay_s_ukundefined
            jay_s_uk @A Former User
            last edited by

            @sgk you can also look at something like the klicky or unklicky

            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

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

              @jay_s_uk
              it's magnetized?

              jay_s_ukundefined 1 Reply Last reply Reply Quote 0
              • jay_s_ukundefined
                jay_s_uk @A Former User
                last edited by

                @sgk yes. klicky, unklicky and euclid all use magnets for attaching the bottom half of the probe

                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

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

                  @jay_s_uk it's too good this idea I imagine that it is necessary to program the printer and what to get the probe really quite complicated this part

                  jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                  • jay_s_ukundefined
                    jay_s_uk @A Former User
                    last edited by

                    @sgk the printer uses the probe as a standard switch.
                    there are example macros required for picking up and docking the probe so its fairly simple to implement

                    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

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

                      @jay_s_uk ha but that's really what you're telling me, do you have any idea by chance where we could find it's macros?

                      jay_s_ukundefined jumpedwithbothfeetundefined 2 Replies Last reply Reply Quote 0
                      • jay_s_ukundefined
                        jay_s_uk @A Former User
                        last edited by

                        @sgk the euclid ones are here https://euclidprobe.github.io/06_rrf3.html

                        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

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

                          @jay_s_uk ok thanks

                          1 Reply Last reply Reply Quote 0
                          • jumpedwithbothfeetundefined
                            jumpedwithbothfeet @A Former User
                            last edited by

                            @sgk Here are my macro's for my Klicky probe it`s mounted on a Voron trident, but they are quite simple but will need to be adjusted to your printer but hopefully they help 🙂

                            homeall.g

                            ; homeall.g
                            ; called to home all axes
                            ;
                            ; generated by RepRapFirmware Configuration Tool v2.1.8 on Mon Apr 06 2020 18:55:28 GMT+0100 (British Summer Time)
                            G91                     ; relative positioning
                            G1 H2 Z3 F6000          ; lift Z relative to current position
                            G1 H1 X400 Y400 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
                            G1 H1 X400 ; fast home x
                            G1 H1 Y400 ; fast home y
                            G1 X-5 Y-5 F600       ; go back a few mm
                            G1 H1 X10 ; fine home x
                            G1 H1 Y10 ; fine home y
                            G90                     ; absolute positioning
                            
                            G1 Y310 F7000 ; Pick Up Klicky
                            G1 X42 F7000 ; Pick Up Klicky
                            G1 Y358 F7000 ; Pick Up Klicky
                            G1 Y310 F7000 ; Pick Up Klicky
                            
                            G1 X180 Y180 F7000      ; go to first bed probe point and home Z
                            G30                     ; home Z by probing the bed
                            
                            G1 Y310 F7000 ; Drop Klicky
                            G1 X42 F7000 ; Drop Klicky
                            G1 Y358 F7000 ; Drop Klicky
                            G1 X89 F7000 ; Drop Klicky
                            
                            ; Uncomment the following lines to lift Z after probing
                            G91                    ; relative positioning
                            G1 Z3 F100             ; lift Z relative to current position
                            G90                    ; absolute positioning
                            

                            homez.g

                            ; homez.g
                            ; called to home the Z axis
                            ;
                            ; generated by RepRapFirmware Configuration Tool v2.1.8 on Mon Apr 06 2020 18:55:29 GMT+0100 (British Summer Time)
                            G91               ; relative positioning
                            G1 H2 Z5 F600    ; lift Z relative to current position
                            G90               ; absolute positioning
                            G1 Y310 F7000 ; Pick Up Klicky
                            G1 X42 F7000 ; Pick Up Klicky
                            G1 Y358 F7000 ; Pick Up Klicky
                            G1 Y310 F7000 ; Pick Up Klicky
                            
                            G1 X180 Y180 F7000 ; go to first probe point
                            G30               ; home Z by probing the bed
                            
                            G1 Y310 F7000 ; Drop Klicky
                            G1 X42 F7000 ; Drop Klicky
                            G1 Y358 F7000 ; Drop Klicky
                            G1 X89 F7000 ; Drop Klicky
                            
                            ; Uncomment the following lines to lift Z after probing
                            G91              ; relative positioning
                            G1 Z5 F100       ; lift Z relative to current position
                            G90              ; absolute positioning
                            
                            

                            bed.g

                            ; bed.g
                            ; called to perform automatic bed compensation via G32
                            ;
                            ; generated by RepRapFirmware Configuration Tool v2.1.8 on Mon Apr 06 2020 18:55:28 GMT+0100 (British Summer Time)
                            M561 ; clear any bed transform
                            ;G29  ; probe the bed and enable compensation
                            ;G28 ; home
                            G1 Y310 F7000 ; Pick Up Klicky
                            G1 X42 F7000 ; Pick Up Klicky
                            G1 Y358 F7000 ; Pick Up Klicky
                            G1 Y310 F7000 ; Pick Up Klicky
                            M401 ; deploy Z probe (omit if using bltouch)
                            G30 P0 X30 Y0 Z-99999 ; probe near a leadscrew, Front left leadscrew
                            G30 P1 X30 Y300 Z-99999 ; probe near a leadscrew, Rear left leadscrew
                            G30 P2 X330 Y0 Z-99999 ; probe near a leadscrew, Rear Right leadscrew
                            G30 P3 X330 Y300 Z-99999 S4 ; probe near a leadscrew and calibrate 4 motors
                            M402 ; retract probe (omit if using bltouch)                  
                            G1 Y310 F7000 ; Drop Klicky
                            G1 X42 F7000 ; Drop Klicky
                            G1 Y358 F7000 ; Drop Klicky
                            G1 X89 F7000 ; Drop Klicky
                            

                            6HC Voron Trident based, 6XD CNC, Mini 5 polar printer

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

                              @jumpedwithbothfeet
                              great thank you guys. it's possible that you make me a picture of your model to have an idea?

                              jumpedwithbothfeetundefined 1 Reply Last reply Reply Quote 0
                              • jumpedwithbothfeetundefined
                                jumpedwithbothfeet @A Former User
                                last edited by

                                @sgk https://www.vorondesign.com/voron_trident my trident is no long standard it has 4 lead screws on the z axis even the klicky probe is not standard however the macro`s should give you an idea when you compare them to yours.
                                IMG_0246.jpg

                                6HC Voron Trident based, 6XD CNC, Mini 5 polar printer

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

                                  @jumpedwithbothfeet
                                  OK great I see every time you feel the bed she will look for the probe that's it?

                                  A Former User? jumpedwithbothfeetundefined 2 Replies Last reply Reply Quote 0
                                  • A Former User?
                                    A Former User @A Former User
                                    last edited by

                                    @sgk
                                    the guy i ordered the probe more than receive it and install😊

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

                                      @sgk Capture d’écran 2022-08-31 164300.jpg

                                      1 Reply Last reply Reply Quote 0
                                      • jumpedwithbothfeetundefined
                                        jumpedwithbothfeet @A Former User
                                        last edited by

                                        @sgk the hot end assy moves to the klicky mount you can see on the rear left of the picture, it then picks up the klicky using the magnets, probes each part of the bed requested then goes back to the klicky mount and removes the probe, it is based on the Euclid probe and has worked flawlessly for me.

                                        6HC Voron Trident based, 6XD CNC, Mini 5 polar printer

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

                                          I have to make a support in 3d right?

                                          jumpedwithbothfeetundefined 1 Reply Last reply Reply Quote 0
                                          • jumpedwithbothfeetundefined
                                            jumpedwithbothfeet @A Former User
                                            last edited by jumpedwithbothfeet

                                            @sgk if your using the Klicky probe then yes just print the files supplied and assemble, I cant comment on the Euclid probe as I don’t know what is supplied.

                                            https://github.com/jlas1/Klicky-Probe Link for Klicky files 😊

                                            6HC Voron Trident based, 6XD CNC, Mini 5 polar printer

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