fix gateway illumination sensor value (#10045)

This commit is contained in:
Maciej Bieniek
2017-10-23 08:02:20 +02:00
committed by Fabian Affolter
parent 106bf467f8
commit 48c86e07fa

View File

@@ -75,8 +75,6 @@ class XiaomiSensor(XiaomiDevice):
return False return False
elif self._data_key == 'humidity' and (value <= 0 or value > 100): elif self._data_key == 'humidity' and (value <= 0 or value > 100):
return False return False
elif self._data_key == 'illumination' and value == 0:
return False
elif self._data_key == 'pressure' and value == 0: elif self._data_key == 'pressure' and value == 0:
return False return False
self._state = round(value, 2) self._state = round(value, 2)