Skip to content

Commit

Permalink
[WWST-6137, WWST-6155, WWST-6142, WWST-6169, WWST-6186, WWST-6192, WW…
Browse files Browse the repository at this point in the history
…ST-6197] EZEX switch fingerprints (SmartThingsCommunity#18086)
  • Loading branch information
juhaki authored and tpmanley committed Jan 21, 2020
1 parent 5ed7611 commit c4bad1c
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ metadata {
command "childOn", ["string"]
command "childOff", ["string"]

// EZEX
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0006", outClusters: "0006, 000A, 0019", manufacturer: "EZEX", model: "E220-KR2N0Z0-HA", deviceJoinName: "EZEX Switch 1"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0006", outClusters: "0006, 000A, 0019", manufacturer: "EZEX", model: "E220-KR3N0Z0-HA", deviceJoinName: "EZEX Switch 1"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0006", outClusters: "0006, 000A, 0019", manufacturer: "EZEX", model: "E220-KR4N0Z0-HA", deviceJoinName: "EZEX Switch 1"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0006", outClusters: "0006, 000A, 0019", manufacturer: "EZEX", model: "E220-KR5N0Z0-HA", deviceJoinName: "EZEX Switch 1"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0006", outClusters: "0006, 000A, 0019", manufacturer: "EZEX", model: "E220-KR6N0Z0-HA", deviceJoinName: "EZEX Switch 1"

fingerprint profileId: "0104", inClusters: "0000, 0005, 0004, 0006", outClusters: "0000", manufacturer: "ORVIBO", model: "074b3ffba5a045b7afd94c47079dd553", deviceJoinName: "Orvibo 2 Gang Switch 1"
fingerprint profileId: "0104", inClusters: "0000, 0005, 0004, 0006", outClusters: "0000", manufacturer: "ORVIBO", model: "9f76c9f31b4c4a499e3aca0977ac4494", deviceJoinName: "Orvibo 3 Gang Switch 1"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0005, 0004, 0006", manufacturer: "REXENSE", model: "HY0003", deviceJoinName: "GDKES 3 Gang Switch 1"
Expand Down Expand Up @@ -212,6 +219,16 @@ private Boolean isOrvibo() {
private getChildCount() {
if (device.getDataValue("model") == "9f76c9f31b4c4a499e3aca0977ac4494" || device.getDataValue("model") == "HY0003" || device.getDataValue("model") == "HY0097" || device.getDataValue("model") == "HS2SW3L-EFR-3.0" ) {
return 3
} else if (device.getDataValue("model") == "E220-KR2N0Z0-HA") {
return 2
} else if (device.getDataValue("model") == "E220-KR3N0Z0-HA") {
return 3
} else if (device.getDataValue("model") == "E220-KR4N0Z0-HA") {
return 4
} else if (device.getDataValue("model") == "E220-KR5N0Z0-HA") {
return 5
} else if (device.getDataValue("model") == "E220-KR6N0Z0-HA") {
return 6
} else {
return 2
}
Expand Down

0 comments on commit c4bad1c

Please sign in to comment.