ICP-1016 Fix default value for states for Aeon Siren Gen5

This commit is contained in:
Donald Kirker
2017-05-26 01:39:05 -07:00
parent 8eed22ca0c
commit 7f3cd0cdaa

View File

@@ -61,6 +61,8 @@ metadata {
def installed() { def installed() {
// Device-Watch simply pings if no device events received for 32min(checkInterval) // Device-Watch simply pings if no device events received for 32min(checkInterval)
sendEvent(name: "checkInterval", value: 2 * 15 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID]) sendEvent(name: "checkInterval", value: 2 * 15 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
response(secure(zwave.basicV1.basicGet()))
} }
def updated() { def updated() {
@@ -163,4 +165,4 @@ private secure(physicalgraph.zwave.Command cmd) {
* */ * */
def ping() { def ping() {
secure(zwave.basicV1.basicGet()) secure(zwave.basicV1.basicGet())
} }