Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions drivers/SmartThings/zigbee-switch/fingerprints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2404,6 +2404,11 @@ zigbeeManufacturer:
manufacturer: LAISIAO
model: yuba
deviceProfileName: switch-smart-bath-heater-laisiao
- id: "LAISIAO/DG60GCM-04-2904W"
deviceLabel: Laisiao Bathroom Heater
manufacturer: LAISIAO
model: DG60GCM-04-2904W
deviceProfileName: switch-smart-bath-heater-laisiao
# NodOn
- id: "NodOn/SIN-4-1-20"
deviceLabel: Zigbee Multifunction Relay Switch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
return function(opts, driver, device, ...)
local FINGERPRINTS = {
{ mfr = "LAISIAO", model = "yuba" },
{ mfr = "LAISIAO", model = "DG60GCM-04-2904W" },
}

for _, fingerprint in ipairs(FINGERPRINTS) do
Expand Down
2 changes: 0 additions & 2 deletions drivers/SmartThings/zigbee-switch/src/laisiao/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ local capabilities = require "st.capabilities"
local zcl_clusters = require "st.zigbee.zcl.clusters"
local configurations = require "configurations"



local function component_to_endpoint(device, component_id)
if component_id == "main" then
return device.fingerprinted_endpoint_id
Expand Down
Loading