mirror of
https://github.com/home-assistant/core.git
synced 2025-08-10 08:05:06 +02:00
fix gateway illumination sensor value (#10045)
This commit is contained in:
committed by
Daniel Høyer Iversen
parent
4e7cc110d9
commit
ccde371a9d
@@ -75,8 +75,6 @@ class XiaomiSensor(XiaomiDevice):
|
||||
return False
|
||||
elif self._data_key == 'humidity' and (value <= 0 or value > 100):
|
||||
return False
|
||||
elif self._data_key == 'illumination' and value == 0:
|
||||
return False
|
||||
elif self._data_key == 'pressure' and value == 0:
|
||||
return False
|
||||
self._state = round(value, 2)
|
||||
|
Reference in New Issue
Block a user