diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-07 16:50:52 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-11-07 16:50:52 -0500 |
commit | 3665e9fc53682ea3cddf49c24e10974c78f2d28c (patch) | |
tree | 677c7f8e70c00a5cf985de2ce84084d2d2a847b7 /config/sample-probe-as-z-endstop.cfg | |
parent | ed610a6600dd982623ad79409f430a522910b202 (diff) | |
download | kutter-3665e9fc53682ea3cddf49c24e10974c78f2d28c.tar.gz kutter-3665e9fc53682ea3cddf49c24e10974c78f2d28c.tar.xz kutter-3665e9fc53682ea3cddf49c24e10974c78f2d28c.zip |
docs: Recommend safe_z_home over homing_override
Update BLTouch.md, FAQ.md, and sample-probe-as-z-endstop.cfg to
recommend using a safe_z_home config section over a homing_override
config section.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/sample-probe-as-z-endstop.cfg')
-rw-r--r-- | config/sample-probe-as-z-endstop.cfg | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/config/sample-probe-as-z-endstop.cfg b/config/sample-probe-as-z-endstop.cfg index 9ef5df7b..99211674 100644 --- a/config/sample-probe-as-z-endstop.cfg +++ b/config/sample-probe-as-z-endstop.cfg @@ -20,16 +20,12 @@ endstop_pin: probe:z_virtual_endstop position_min: -2 # The Z carriage may need to travel below the Z=0 # homing point if the bed has a significant tilt. -# The homing_override section modifies the default G28 behavior -[homing_override] -set_position_z: 0 -axes: z -gcode: - G90 - ; G1 Z2 F600 ; Uncomment to blindly lift the Z 2mm at start - G28 X0 Y0 - G1 X100 Y100 F3600 - G28 Z0 +# The safe_z_home section modifies the default G28 behavior +[safe_z_home] +home_xy_position: 100,100 +speed: 50 +z_hop: 15 +z_hop_speed: 5 # Example bed_tilt config section [bed_tilt] |