aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-12-16 19:21:37 -0500
committerKevin O'Connor <kevin@koconnor.net>2019-12-16 19:21:37 -0500
commit0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab (patch)
tree92ab48881e1b7ee5670aecf6cdb2f73161b67319 /klippy/extras
parent665323eb29c7794776ce64a17786032690ef3a2a (diff)
downloadkutter-0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab.tar.gz
kutter-0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab.tar.xz
kutter-0e2d1a190e2f26197a4ebc3f5eaaa87c5b8d71ab.zip
gcode: Rename bg_temp() to wait_for_temperature()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/pid_calibrate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/pid_calibrate.py b/klippy/extras/pid_calibrate.py
index 9c9dc0a4..b7201926 100644
--- a/klippy/extras/pid_calibrate.py
+++ b/klippy/extras/pid_calibrate.py
@@ -31,7 +31,7 @@ class PIDCalibrate:
except self.printer.command_error as e:
heater.set_control(old_control)
raise
- self.gcode.bg_temp(heater)
+ self.gcode.wait_for_temperature(heater)
heater.set_control(old_control)
if write_file:
calibrate.write_file('/tmp/heattest.txt')