From c88da82a1b9a03991fc3f91813170412b03e43ff Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 5 Oct 2020 20:44:03 +0200 Subject: [PATCH] round the temp values to the third value --- collector/collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/collector.py b/collector/collector.py index 15c4936..bfcd976 100644 --- a/collector/collector.py +++ b/collector/collector.py @@ -15,7 +15,7 @@ def _round_to_half(value): def get_temperature(): - return round(0.899338368784139 * sense.get_temperature(), 1) + return round(0.899338368784139 * sense.get_temperature(), 3) def get_pressure():