mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 03:07:37 +00:00
Fix xiaomi binary_sensor warning (#18280)
* Fix xiaomi binary_sensor warning * Fix xiaomi binary_sensor warning
This commit is contained in:
parent
b803075eb4
commit
c571637176
@ -357,6 +357,9 @@ class XiaomiVibration(XiaomiBinarySensor):
|
||||
def parse_data(self, data, raw_data):
|
||||
"""Parse data sent by gateway."""
|
||||
value = data.get(self._data_key)
|
||||
if value is None:
|
||||
return False
|
||||
|
||||
if value not in ('vibrate', 'tilt', 'free_fall'):
|
||||
_LOGGER.warning("Unsupported movement_type detected: %s",
|
||||
value)
|
||||
|
Loading…
x
Reference in New Issue
Block a user