diff options
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/extras/htu21d.py | 2 |
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, } |