mirror of
https://github.com/home-assistant/core.git
synced 2025-06-18 12:07:06 +00:00
- check for reasonable temperature values
- round temperature to one digit
This commit is contained in:
parent
e2e8d4276f
commit
d6b19aae48
@ -96,5 +96,7 @@ class OneWire(Entity):
|
|||||||
equals_pos = lines[1].find('t=')
|
equals_pos = lines[1].find('t=')
|
||||||
if equals_pos != -1:
|
if equals_pos != -1:
|
||||||
temp_string = lines[1][equals_pos+2:]
|
temp_string = lines[1][equals_pos+2:]
|
||||||
temp = float(temp_string) / 1000.0
|
temp = round(float(temp_string) / 1000.0, 1)
|
||||||
|
if temp < -55 or temp > 125:
|
||||||
|
return
|
||||||
self._state = temp
|
self._state = temp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user