Add long click at new Aqara Wireless Remote Switch (#19518)

New Aqara Wireless Remote Switch Single supports long click.
This commit is contained in:
Panagiotis Panagiotopoulos 2018-12-22 20:35:25 +02:00 committed by Sebastian Muszynski
parent ef53a2d118
commit 07b6aaec63

View File

@ -411,7 +411,9 @@ class XiaomiButton(XiaomiBinarySensor):
click_type = 'both' click_type = 'both'
elif value == 'shake': elif value == 'shake':
click_type = 'shake' click_type = 'shake'
elif value in ['long_click', 'long_both_click']: elif value == 'long_click':
click_type = 'long'
elif value == 'long_both_click':
return False return False
else: else:
_LOGGER.warning("Unsupported click_type detected: %s", value) _LOGGER.warning("Unsupported click_type detected: %s", value)