From 47d19b3967566a5efbed8673754aa240b1457364 Mon Sep 17 00:00:00 2001 From: Robert Svensson Date: Sat, 30 Apr 2022 18:26:14 +0200 Subject: [PATCH] Fix copy paste issue leaving one device trigger with a wrong subtype (#71121) --- homeassistant/components/deconz/device_trigger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/deconz/device_trigger.py b/homeassistant/components/deconz/device_trigger.py index c76aaf481bf..c92ad7f46dc 100644 --- a/homeassistant/components/deconz/device_trigger.py +++ b/homeassistant/components/deconz/device_trigger.py @@ -403,7 +403,7 @@ AQARA_OPPLE_4_BUTTONS = { AQARA_OPPLE_6_BUTTONS_MODEL = "lumi.remote.b686opcn01" AQARA_OPPLE_6_BUTTONS = { **AQARA_OPPLE_4_BUTTONS, - (CONF_LONG_PRESS, CONF_DIM_DOWN): {CONF_EVENT: 5001}, + (CONF_LONG_PRESS, CONF_LEFT): {CONF_EVENT: 5001}, (CONF_SHORT_RELEASE, CONF_LEFT): {CONF_EVENT: 5002}, (CONF_LONG_RELEASE, CONF_LEFT): {CONF_EVENT: 5003}, (CONF_DOUBLE_PRESS, CONF_LEFT): {CONF_EVENT: 5004},