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

    Ender 3 RRF v1.1 setting up BLtouch

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    3
    81
    4.2k
    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.
    • Gixxerfastundefined
      Gixxerfast @re_tour
      last edited by

      @re_tour Try adding it ๐Ÿ™‚ (I always mess upp here). Just be close to the breaker

      Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
      Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
      Ender 3 Pro with BTT SKR-2 + RRF

      1 Reply Last reply Reply Quote 1
      • Gixxerfastundefined
        Gixxerfast @re_tour
        last edited by

        @re_tour Then again my offset is Z4.370 and I think my probe is as close to the bed as it could really be

        Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
        Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
        Ender 3 Pro with BTT SKR-2 + RRF

        re_tourundefined 1 Reply Last reply Reply Quote 1
        • re_tourundefined
          re_tour @Gixxerfast
          last edited by

          @gixxerfast Stupid question I know, but how will I know that my offset is correct?๐Ÿ˜

          Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

          Gixxerfastundefined 1 Reply Last reply Reply Quote 0
          • Gixxerfastundefined
            Gixxerfast @re_tour
            last edited by

            @re_tour Same way, just lower slowly to zero and see if your paper feels right.

            Then when printing you will probably see that you're to close and you will want to lift it a bit. But all do it differently I think. I just go for a lot of paper friction, it's easier to adjust every corner.

            Also, on the Ender. Don't put too much work into this cause you will do the bed screws anyway with the paper method I guess. Then when it's fairly flat (ish) you'll do a bed mesh.

            Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
            Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
            Ender 3 Pro with BTT SKR-2 + RRF

            re_tourundefined 1 Reply Last reply Reply Quote 1
            • re_tourundefined
              re_tour @Gixxerfast
              last edited by

              @gixxerfast Wait, so if I set up the offset correctly, how do I get from here to be able to do the bed mesh?

              Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

              Gixxerfastundefined Stephen6309undefined 2 Replies Last reply Reply Quote 0
              • Gixxerfastundefined
                Gixxerfast @re_tour
                last edited by Gixxerfast

                @re_tour
                You have something like this in your config.g:

                ;mesh_min: 30, 15
                ;mesh_max: 190, 220
                ;probe_count: 5
                M557 X30:190 Y15:220 P5                      ; define mesh grid
                

                Then you have a file called mesh.g in your /sys directory with something like this in it:

                
                G29 S2
                
                ; move to the center of the mesh with the PROBE (mind affset in Y is 25 above noozle)
                G90
                var xoffset = 37.1
                var yoffset = 9.25
                var xpos = {110 - var.xoffset}
                var ypos = {117.5 - var.yoffset}
                
                G1 X{var.xpos} Y{var.ypos} Z15 F6000
                
                echo "Setting Probe Offset now"
                G30 K0
                G1 Z15 F3000
                
                G29 S0
                

                The offsets of course depends on where you have your probe mounted.

                Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
                Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
                Ender 3 Pro with BTT SKR-2 + RRF

                re_tourundefined 1 Reply Last reply Reply Quote 1
                • Stephen6309undefined
                  Stephen6309 @re_tour
                  last edited by

                  @re_tour Home all, then mesh.

                  G28
                  G29

                  or

                  G28
                  G32 ; call bed.g

                  In bedg.g I have:

                  ; bed.g
                  ; called to perform automatic bed compensation via G32
                  M561 ; clear any bed transform
                  if !move.axes[0].homed || !move.axes[1].homed || !move.axes[2].homed
                   G28
                  M290 R0 S0    ;  clear baby stepping
                  G29 S1 ; load heightmap.csv
                  if result > 1 ; if no heightmap.csv, make one
                   G29 S0
                  
                  re_tourundefined 1 Reply Last reply Reply Quote 0
                  • re_tourundefined
                    re_tour @Gixxerfast
                    last edited by

                    @gixxerfast
                    Okay, looks like subtraction is the way to go when calibrating offset ๐Ÿ˜
                    Offset is now correct and set to Z3.55.

                    the part you mentioned in config.g looks like this for me:

                    ; Z-Probe
                    M950 S0 C"servo0"                              ; create servo pin 0 for BLTouch
                    M558 P9 C"^probe" H5 F300:120 A3 T6000         ; set Z probe type to bltouch and the dive height + speeds,the F300:120 first speed 300 second 120
                    G31 P500 X117.5 Y117.5 Z3.55                      ; set Z probe trigger value, offset and trigger height
                    M557 X15:215 Y15:195 S20                       ; define mesh grid
                    

                    But, I don't have a mesh.g in my sys. Do I have to make that for myself or it will autamatically be generated once I run the process?

                    Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

                    Gixxerfastundefined 2 Replies Last reply Reply Quote 0
                    • re_tourundefined
                      re_tour @Stephen6309
                      last edited by

                      @stephen6309 I have this in bed.g:

                      ; bed.g
                      ; called to perform automatic bed compensation via G32
                      ;
                      ; generated by RepRapFirmware Configuration Tool v3.3.1-LPC-STM32+2 on Tue Dec 28 2021 01:07:55 GMT+0100 (kรถzรฉp-eurรณpai tรฉli idล‘)
                      M561 ; clear any bed transform
                      G29  ; probe the bed and enable compensation
                      

                      Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

                      Stephen6309undefined 1 Reply Last reply Reply Quote 0
                      • Gixxerfastundefined
                        Gixxerfast @re_tour
                        last edited by

                        @re_tour Great!! I always get that the other way around.

                        If you're happy with your mesh grid go for it

                        You will have to make the file yourself.

                        Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
                        Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
                        Ender 3 Pro with BTT SKR-2 + RRF

                        1 Reply Last reply Reply Quote 1
                        • Gixxerfastundefined
                          Gixxerfast @re_tour
                          last edited by

                          @re_tour G32 and bed.g is for gantry/bed leveling. G29 and mesh.g is for the bed mesh.

                          In earlier vesrions of RRF I think mesh-g didn't exist so therefore a lot of people still uses bed.g with the G32.

                          Anyhow, the Ender can't level gantry or bed automatically since it only has one z-motor

                          Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
                          Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
                          Ender 3 Pro with BTT SKR-2 + RRF

                          re_tourundefined 1 Reply Last reply Reply Quote 1
                          • re_tourundefined
                            re_tour @Gixxerfast
                            last edited by

                            @gixxerfast Oh right, so I can only use the bed mesh anyways.

                            Okay so I modified the config.g a little bit:

                            M557 X30:190 Y30:190 P5                       ; define mesh grid
                            

                            and copied your mesh.g, in which I presume I'll have to measure the distances with a ruler or something?

                            Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

                            Gixxerfastundefined 1 Reply Last reply Reply Quote 0
                            • Stephen6309undefined
                              Stephen6309 @re_tour
                              last edited by

                              @re_tour That will work fine. I have the if statements make sure it's homed and load the height map. Also, I clear the baby stepping, since I update a macro I call to set the Z offset.

                              1 Reply Last reply Reply Quote 0
                              • Gixxerfastundefined
                                Gixxerfast @re_tour
                                last edited by

                                @re_tour Yes, if you don't already know them. Usually mounts have a them in the description/documentation. It's not very precise so ruler works.

                                As said above, it's probably wise to add this to the top of your mesh.g

                                if !move.axes[0].homed || !move.axes[1].homed || !move.axes[2].homed
                                 G28
                                M290 R0 S0    ;  clear baby stepping
                                

                                But then you should be ready to go ๐Ÿ™‚

                                Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
                                Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
                                Ender 3 Pro with BTT SKR-2 + RRF

                                re_tourundefined 1 Reply Last reply Reply Quote 1
                                • re_tourundefined
                                  re_tour @Gixxerfast
                                  last edited by

                                  @gixxerfast Thank you. Lastly, how do I measure these:

                                  var xoffset = 37.1
                                  var yoffset = 9.25
                                  var xpos = {110 - var.xoffset}
                                  var ypos = {117.5 - var.yoffset}
                                  

                                  I mean in relation to what from what?

                                  Also, what kind of bltouch holder do you have? Maybe we have the same which would mean the numbers are mostly correct ๐Ÿ˜

                                  Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

                                  Gixxerfastundefined 1 Reply Last reply Reply Quote 0
                                  • Gixxerfastundefined
                                    Gixxerfast @re_tour
                                    last edited by Gixxerfast

                                    @re_tour I have the Voron Afterburner, so probably not. But I have my probe to the right and behind the nozzle seen standing in fron of the printer.

                                    Should be the same numbers you have in your G31 command

                                    <-------- 37.1 ------->
                                                          x   ^
                                                               |
                                                            9.25
                                                                |
                                    o                         ---
                                    

                                    Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
                                    Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
                                    Ender 3 Pro with BTT SKR-2 + RRF

                                    re_tourundefined 1 Reply Last reply Reply Quote 1
                                    • re_tourundefined
                                      re_tour @Gixxerfast
                                      last edited by

                                      @gixxerfast Okay, so measured up I now have the following mesh.g:

                                      if !move.axes[0].homed || !move.axes[1].homed || !move.axes[2].homed
                                       G28
                                      M290 R0 S0    ;  clear baby stepping
                                      
                                      G29 S2
                                       
                                      ; move to the center of the mesh with the PROBE (mind affset in Y is 25 above noozle)
                                      G90
                                      var xoffset = 44
                                      var yoffset = 18
                                      var xpos = {117.5 - var.xoffset}
                                      var ypos = {117.5 - var.yoffset}
                                       
                                      G1 X{var.xpos} Y{var.ypos} Z15 F6000
                                       
                                      echo "Setting Probe Offset now"
                                      G30 K0
                                      G1 Z15 F3000
                                      G29 S0
                                      

                                      In which the xpos and ypos is the same as this line in the config.g file:

                                      G31 P500 X117.5 Y117.5 Z3.55                      ; set Z probe trigger value, offset and trigger height
                                      

                                      What is the next step from here?

                                      Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

                                      Gixxerfastundefined 2 Replies Last reply Reply Quote 0
                                      • Gixxerfastundefined
                                        Gixxerfast @re_tour
                                        last edited by

                                        @re_tour said in Ender 3 RRF v1.1 setting up BLtouch:

                                        G31 P500 X117.5 Y117.5 Z3.55

                                        No, this must be wrong

                                        Shouldn't it be:

                                        G31 P500 X44 Y18 Z3.55
                                        

                                        ?

                                        Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
                                        Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
                                        Ender 3 Pro with BTT SKR-2 + RRF

                                        re_tourundefined 1 Reply Last reply Reply Quote 1
                                        • Gixxerfastundefined
                                          Gixxerfast @re_tour
                                          last edited by Gixxerfast

                                          @re_tour When all of this is done. Heat your bed to the standard temp and the home all with
                                          4aaf64d3-17e3-4060-9cdd-0c5ae1806778-image.png

                                          and run mesh compensation:

                                          46b9ac75-06be-4c4a-b7c5-874254ca8fc7-image.png

                                          The you should have a mesh file which you can look at with:

                                          45e7aaf5-92f0-49e8-83cb-bfb958594c15-image.png

                                          Voron V2.4 (#1317) with Duet 3 Mini5+ Wifi and 1LC v1.1 Toolboard
                                          Voron V0.1 (#637) with Duet 3 Mini 5+ Wifi and 1LC v1.2 Toolboard
                                          Ender 3 Pro with BTT SKR-2 + RRF

                                          1 Reply Last reply Reply Quote 1
                                          • re_tourundefined
                                            re_tour @Gixxerfast
                                            last edited by

                                            @gixxerfast

                                            To be honest for some reason I set that number at the start after browsing through reddit. Since you have the same printer, what is it for you?

                                            Btw just to clarify,

                                            var xoffset = 44
                                            
                                            var yoffset = 18
                                            

                                            This is measured from the sensor to the nozzle, right?

                                            Creality Ender 3 | BIGTREETECH E3 RRF V1.1 Wifi | BLTouch | RepRap 3.3.0_11

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