diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-01-07 10:26:04 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-01-07 10:26:04 -0500 |
commit | fac2d7817cf9308ea9b0e76079586a7dfaa956d4 (patch) | |
tree | 5a06ebb388934171f2a6d61a63cadc1ee95cac62 | |
parent | 6ccc0732c119e9f92c714c4542d760ea77bcbfdd (diff) | |
download | kutter-fac2d7817cf9308ea9b0e76079586a7dfaa956d4.tar.gz kutter-fac2d7817cf9308ea9b0e76079586a7dfaa956d4.tar.xz kutter-fac2d7817cf9308ea9b0e76079586a7dfaa956d4.zip |
config: Update sample-probe-as-z-endstop.cfg to use set_position_z=0
It's confusing to use a non-zero set_position_z as an example.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | config/sample-probe-as-z-endstop.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/sample-probe-as-z-endstop.cfg b/config/sample-probe-as-z-endstop.cfg index 89c757a1..fd574c6f 100644 --- a/config/sample-probe-as-z-endstop.cfg +++ b/config/sample-probe-as-z-endstop.cfg @@ -22,11 +22,11 @@ position_min: -2 # The Z carriage may need to travel below the Z=0 # The homing_override section modifies the default G28 behavior [homing_override] -set_position_z: 5 +set_position_z: 0 axes: z gcode: ; G90 ; Uncomment these 2 lines to blindly lift the Z 2mm at start - ; G1 Z7 F600 + ; G1 Z2 F600 G28 X0 Y0 G1 X100 Y100 F3600 G28 Z0 |