aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--klippy/extras/heaters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/heaters.py b/klippy/extras/heaters.py
index 048f293e..74b40926 100644
--- a/klippy/extras/heaters.py
+++ b/klippy/extras/heaters.py
@@ -133,7 +133,7 @@ class Heater:
target_temp = self.target_temp
smoothed_temp = self.smoothed_temp
last_pwm_value = self.last_pwm_value
- return {'temperature': smoothed_temp, 'target': target_temp,
+ return {'temperature': round(smoothed_temp, 2), 'target': target_temp,
'power': last_pwm_value}
cmd_SET_HEATER_TEMPERATURE_help = "Sets a heater temperature"
def cmd_SET_HEATER_TEMPERATURE(self, gcmd):