Skip to content

Commit

Permalink
Wemo dimmers are unreliably reported
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cjswedes committed Feb 16, 2023
1 parent a571e8b commit 2690e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/SmartThings/wemo/src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
Expand Down

0 comments on commit 2690e66

Please sign in to comment.