Skip to content

Commit 0473cdc

Browse files
greensworkingmonk
authored andcommitted
* ICP-4586 ICP-4613 GE Direct-Wire Outdoor Switch Adding device-specific fingerprint for an old device. Also adding polling logic back since the GE device does not automatically report power/energy usage. * ICP-4586 ICP-4613 GE Direct-Wire Outdoor Switch missing paren
1 parent 5cb5424 commit 0473cdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def installed() {
8888
def updated() {
8989
// Device-Watch simply pings if no device events received for 32min(checkInterval)
9090
sendEvent(name: "checkInterval", value: 2 * 15 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
91-
if (zwaveInfo?.mfr?.equals("0063") { // These old GE devices have to be polled
91+
if (zwaveInfo?.mfr?.equals("0063")) { // These old GE devices have to be polled
9292
unschedule("poll")
9393
runEvery15Minutes("poll")
9494
}

0 commit comments

Comments
 (0)