mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
probe: bugfix to z_offset_apply_probe (#4553)
Command was accessing the wrong variable for the existing z offset, leading to bad behavior. Signed-off-by: Ben Eastep <shifting@shifting.ca>
This commit is contained in:
parent
b8f6b90467
commit
36e3969219
@ -267,13 +267,12 @@ class PrinterProbe:
|
|||||||
manual_probe.ManualProbeHelper(self.printer, gcmd,
|
manual_probe.ManualProbeHelper(self.printer, gcmd,
|
||||||
self.probe_calibrate_finalize)
|
self.probe_calibrate_finalize)
|
||||||
def cmd_Z_OFFSET_APPLY_PROBE(self,gcmd):
|
def cmd_Z_OFFSET_APPLY_PROBE(self,gcmd):
|
||||||
z_offset = self.probe_calibrate_z
|
|
||||||
offset = self.gcode_move.get_status()['homing_origin'].z
|
offset = self.gcode_move.get_status()['homing_origin'].z
|
||||||
configfile = self.printer.lookup_object('configfile')
|
configfile = self.printer.lookup_object('configfile')
|
||||||
if offset == 0:
|
if offset == 0:
|
||||||
self.gcode.respond_info("Nothing to do: Z Offset is 0")
|
self.gcode.respond_info("Nothing to do: Z Offset is 0")
|
||||||
else:
|
else:
|
||||||
new_calibrate = self.probe_calibrate_z - offset
|
new_calibrate = self.z_offset - offset
|
||||||
self.gcode.respond_info(
|
self.gcode.respond_info(
|
||||||
"%s: z_offset: %.3f\n"
|
"%s: z_offset: %.3f\n"
|
||||||
"The SAVE_CONFIG command will update the printer config file\n"
|
"The SAVE_CONFIG command will update the printer config file\n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user