Skip to content

Commit 89a681d

Browse files
ccheng-aeotecChristopher Cheng
andauthored
DevWs for Aeotec Group GmbH containing containing Z-Wave Dimmer Switch Generic and 1 more (SmartThingsCommunity#68523)
* DevWs for Aeotec Group GmbH containing containing Z-Wave Dimmer Switch Generic and 1 more * Updated Delay on On and Off definitions * Remove 200ms static input on line 183 and 190. Use Default which is already 200ms. * Tested without groovy secure encapsulation to confirm if S2_Authentication works. It works for both illumino Dimmer and illumino Switch. * Spotted a few formatting issues when re-updating code. All coding format should be fixed now. Co-authored-by: Christopher Cheng <boney.cheng@gmail.com>
1 parent 1fcd7ed commit 89a681d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

devicetypes/smartthings/zwave-dimmer-switch-generic.src/zwave-dimmer-switch-generic.groovy

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ metadata {
5151
fingerprint mfr: "0312", prod: "FF00", model: "FF02", deviceJoinName: "Minoston Dimmer Switch" //Minoston Toggle Dimmer Switch
5252
fingerprint mfr: "0312", prod: "AA00", model: "AA02", deviceJoinName: "Evalogik Dimmer Switch" //Evalogik Smart Dimmer Switch
5353
fingerprint mfr: "0312", prod: "C000", model: "C002", deviceJoinName: "Evalogik Dimmer Switch" //Evalogik Smart Plug Dimmer
54+
fingerprint mfr: "0371", prod: "0103", model: "0025", deviceJoinName: "Aeotec Dimmer Switch" //Aeotec illumino Dimmer Switch
5455
}
5556

5657
simulator {
@@ -272,8 +273,8 @@ def refresh() {
272273
def isHoneywellDimmer() {
273274
zwaveInfo?.mfr?.equals("0039") && (
274275
(zwaveInfo?.prod?.equals("5044") && zwaveInfo?.model?.equals("3033")) ||
275-
(zwaveInfo?.prod?.equals("5044") && zwaveInfo?.model?.equals("3038")) ||
276-
(zwaveInfo?.prod?.equals("4944") && zwaveInfo?.model?.equals("3038")) ||
277-
(zwaveInfo?.prod?.equals("4944") && zwaveInfo?.model?.equals("3130"))
276+
(zwaveInfo?.prod?.equals("5044") && zwaveInfo?.model?.equals("3038")) ||
277+
(zwaveInfo?.prod?.equals("4944") && zwaveInfo?.model?.equals("3038")) ||
278+
(zwaveInfo?.prod?.equals("4944") && zwaveInfo?.model?.equals("3130"))
278279
)
279280
}

devicetypes/smartthings/zwave-switch-generic.src/zwave-switch-generic.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ metadata {
6262
fingerprint mfr: "0312", prod: "C000", model: "CO05", deviceJoinName: "Evalogik Outlet", ocfDeviceType: "oic.d.smartplug" //Evalogik Mini Outdoor Smart Plug
6363
fingerprint mfr: "031E", prod: "0004", model: "0001", deviceJoinName: "Inovelli Switch" //Inovelli Switch
6464
fingerprint mfr: "001D", prod: "0037", model: "0002", deviceJoinName: "Leviton Outlet", ocfDeviceType: "oic.d.smartplug" //Leviton Tamper Resistant Outlet ZW15R
65+
fingerprint mfr: "0371", prod: "0103", model: "0026", deviceJoinName: "Aeotec Wall Switch" //Aeotec illumino Wall Switch
6566
}
6667

6768
// simulator metadata

0 commit comments

Comments
 (0)