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
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

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