aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/temperature_fan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/temperature_fan.py b/klippy/extras/temperature_fan.py
index 8ddedabb..80ae162a 100644
--- a/klippy/extras/temperature_fan.py
+++ b/klippy/extras/temperature_fan.py
@@ -72,7 +72,7 @@ class TemperatureFan:
return self.max_speed
def get_status(self, eventtime):
status = self.fan.get_status(eventtime)
- status["temperature"] = self.last_temp
+ status["temperature"] = round(self.last_temp, 2)
status["target"] = self.target_temp
return status
cmd_SET_TEMPERATURE_FAN_TARGET_help = \