Added checkInterval sendEvent in installed() section for all zwave DTHs

This commit is contained in:
Parijat Das
2017-04-11 09:30:01 +05:30
parent a28c90e492
commit daefec9d1f
17 changed files with 87 additions and 2 deletions

View File

@@ -53,7 +53,12 @@ metadata {
}
}
def updated(){
def installed() {
// Device checks in every hour, this interval allows us to miss one check-in notification before marking offline
sendEvent(name: "checkInterval", value: 2 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
}
def updated() {
// Device checks in every hour, this interval allows us to miss one check-in notification before marking offline
sendEvent(name: "checkInterval", value: 2 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
}