round the temp values to the third value

This commit is contained in:
Andreas Zweili 2020-10-05 20:44:03 +02:00
parent 5be6defa3b
commit c88da82a1b
1 changed files with 1 additions and 1 deletions

View File

@ -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():