From 2690e669d0e6063f64a89992845f28eeb97befcf Mon Sep 17 00:00:00 2001 From: Carter Swedal Date: Thu, 16 Feb 2023 13:29:08 -0600 Subject: [PATCH] Wemo dimmers are unreliably reported Consider all dimmers as regular smart switches. Some Wemo switches erroneously report that they are dimmers, so the change prevents switchLevel capability from being added to all wemo devices. Note this is the same as current DTH behavior and is not a loss of functionality on the platform. --- drivers/SmartThings/wemo/src/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/SmartThings/wemo/src/init.lua b/drivers/SmartThings/wemo/src/init.lua index 2b214293f5..cb555917f7 100644 --- a/drivers/SmartThings/wemo/src/init.lua +++ b/drivers/SmartThings/wemo/src/init.lua @@ -35,7 +35,7 @@ local utils = require "st.utils" local profiles = { ["Insight"] = "wemo.mini-smart-plug.v1", ["Socket"] = "wemo.mini-smart-plug.v1", - ["Dimmer"] = "wemo.dimmer-switch.v1", + ["Dimmer"] = "wemo.mini-smart-plug.v1", ["Motion"] = "wemo.motion-sensor.v1", ["Lightswitch"] = "wemo.light-switch.v1", }