Skip to content

Commit

Permalink
[prtouch] invert z-offset before saving
Browse files Browse the repository at this point in the history
  • Loading branch information
0xD34D committed Jun 15, 2024
1 parent 701fc5a commit c6013c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/extras/prtouch.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def probe_by_step(self, rdy_pos, speed_mm, min_dis_mm, min_hold, max_hold, up_af
def probe_calibrate_finalize(self, kin_pos):
if kin_pos is None:
return
z_offset = kin_pos[2]
z_offset = -kin_pos[2]
probe_name = self.cfg.probe_name
gcode = self.obj.printer.lookup_object('gcode')
gcode.respond_info(
Expand Down

0 comments on commit c6013c8

Please sign in to comment.