aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/htu21d.py
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras/htu21d.py')
-rw-r--r--klippy/extras/htu21d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/htu21d.py b/klippy/extras/htu21d.py
index 52e2f75e..74a6ad20 100644
--- a/klippy/extras/htu21d.py
+++ b/klippy/extras/htu21d.py
@@ -236,7 +236,7 @@ class HTU21D:
def get_status(self, eventtime):
return {
- 'temperature': self.temp,
+ 'temperature': round(self.temp, 2),
'humidity': self.humidity,
}