mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-04-13 22:05:21 +01:00
Merge pull request #1761 from mckeed/ICP-399-prod
Update Fibaro Flood Sensor configuration ICP-399 ICP-398
This commit is contained in:
@@ -24,10 +24,11 @@ metadata {
|
|||||||
capability "Health Check"
|
capability "Health Check"
|
||||||
|
|
||||||
fingerprint deviceId: "0x0701", inClusters: "0x5E, 0x22, 0x85, 0x59, 0x20, 0x80, 0x70, 0x56, 0x5A, 0x7A, 0x72, 0x8E, 0x71, 0x73, 0x98, 0x9C, 0x31, 0x86", outClusters: ""
|
fingerprint deviceId: "0x0701", inClusters: "0x5E, 0x22, 0x85, 0x59, 0x20, 0x80, 0x70, 0x56, 0x5A, 0x7A, 0x72, 0x8E, 0x71, 0x73, 0x98, 0x9C, 0x31, 0x86", outClusters: ""
|
||||||
|
fingerprint mfr:"010F", prod:"0B01", model:"2002"
|
||||||
|
fingerprint mfr:"010F", prod:"0B01", model:"1002"
|
||||||
}
|
}
|
||||||
|
|
||||||
simulator {
|
simulator {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tiles(scale: 2) {
|
tiles(scale: 2) {
|
||||||
@@ -123,11 +124,9 @@ def zwaveEvent(physicalgraph.zwave.commands.wakeupv2.WakeUpNotification cmd)
|
|||||||
{
|
{
|
||||||
def event = createEvent(descriptionText: "${device.displayName} woke up", displayed: false)
|
def event = createEvent(descriptionText: "${device.displayName} woke up", displayed: false)
|
||||||
def cmds = []
|
def cmds = []
|
||||||
|
// cmds << encap(zwave.sensorMultilevelV5.sensorMultilevelGet(sensorType: 1, scale: 0))
|
||||||
|
// cmds << "delay 500"
|
||||||
cmds << encap(zwave.batteryV1.batteryGet())
|
cmds << encap(zwave.batteryV1.batteryGet())
|
||||||
cmds << "delay 500"
|
|
||||||
cmds << encap(zwave.sensorMultilevelV5.sensorMultilevelGet(sensorType: 1, scale: 0))
|
|
||||||
cmds << "delay 1200"
|
|
||||||
cmds << encap(zwave.wakeUpV1.wakeUpNoMoreInformation())
|
|
||||||
[event, response(cmds)]
|
[event, response(cmds)]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,7 +143,7 @@ def zwaveEvent(physicalgraph.zwave.commands.manufacturerspecificv2.DeviceSpecifi
|
|||||||
log.debug "deviceIdDataLengthIndicator: ${cmd.deviceIdDataLengthIndicator}"
|
log.debug "deviceIdDataLengthIndicator: ${cmd.deviceIdDataLengthIndicator}"
|
||||||
log.debug "deviceIdType: ${cmd.deviceIdType}"
|
log.debug "deviceIdType: ${cmd.deviceIdType}"
|
||||||
|
|
||||||
if (cmd.deviceIdType == 1 && cmd.deviceIdDataFormat == 1) {//serial number in binary format
|
if (cmd.deviceIdType == 1 && cmd.deviceIdDataFormat == 1) { //serial number in binary format
|
||||||
String serialNumber = "h'"
|
String serialNumber = "h'"
|
||||||
|
|
||||||
cmd.deviceIdData.each{ data ->
|
cmd.deviceIdData.each{ data ->
|
||||||
@@ -154,6 +153,19 @@ def zwaveEvent(physicalgraph.zwave.commands.manufacturerspecificv2.DeviceSpecifi
|
|||||||
updateDataValue("serialNumber", serialNumber)
|
updateDataValue("serialNumber", serialNumber)
|
||||||
log.debug "${device.displayName} - serial number: ${serialNumber}"
|
log.debug "${device.displayName} - serial number: ${serialNumber}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def response_cmds = []
|
||||||
|
if (!device.currentState("temperature")) {
|
||||||
|
response_cmds << encap(zwave.sensorMultilevelV5.sensorMultilevelGet(sensorType: 1, scale: 0))
|
||||||
|
}
|
||||||
|
if (!getDataValue("version") && !zwaveInfo.ver) {
|
||||||
|
log.debug "Requesting Version Report"
|
||||||
|
response_cmds << "delay 500"
|
||||||
|
response_cmds << encap(zwave.versionV1.versionGet())
|
||||||
|
}
|
||||||
|
response_cmds << "delay 1000"
|
||||||
|
response_cmds << encap(zwave.wakeUpV2.wakeUpNoMoreInformation())
|
||||||
|
[[:], response(response_cmds)]
|
||||||
}
|
}
|
||||||
|
|
||||||
def zwaveEvent(physicalgraph.zwave.commands.versionv1.VersionReport cmd) {
|
def zwaveEvent(physicalgraph.zwave.commands.versionv1.VersionReport cmd) {
|
||||||
@@ -166,12 +178,20 @@ def zwaveEvent(physicalgraph.zwave.commands.versionv1.VersionReport cmd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
def zwaveEvent(physicalgraph.zwave.commands.batteryv1.BatteryReport cmd) {
|
def zwaveEvent(physicalgraph.zwave.commands.batteryv1.BatteryReport cmd) {
|
||||||
|
def result = []
|
||||||
def map = [:]
|
def map = [:]
|
||||||
map.name = "battery"
|
map.name = "battery"
|
||||||
map.value = cmd.batteryLevel == 255 ? 1 : cmd.batteryLevel.toString()
|
map.value = cmd.batteryLevel == 255 ? 1 : cmd.batteryLevel.toString()
|
||||||
map.unit = "%"
|
map.unit = "%"
|
||||||
map.displayed = true
|
|
||||||
createEvent(map)
|
result << createEvent(map)
|
||||||
|
|
||||||
|
if (!getDataValue("serialNumber")) {
|
||||||
|
result << response(encap(zwave.manufacturerSpecificV2.deviceSpecificGet()))
|
||||||
|
} else {
|
||||||
|
result << response(encap(zwave.wakeUpV2.wakeUpNoMoreInformation()))
|
||||||
|
}
|
||||||
|
result
|
||||||
}
|
}
|
||||||
|
|
||||||
def zwaveEvent(physicalgraph.zwave.commands.notificationv3.NotificationReport cmd) {
|
def zwaveEvent(physicalgraph.zwave.commands.notificationv3.NotificationReport cmd) {
|
||||||
@@ -229,21 +249,18 @@ def zwaveEvent(physicalgraph.zwave.commands.deviceresetlocallyv1.DeviceResetLoca
|
|||||||
|
|
||||||
def configure() {
|
def configure() {
|
||||||
log.debug "Executing 'configure'"
|
log.debug "Executing 'configure'"
|
||||||
// Device-Watch simply pings if no device events received for 8 hrs & 2 minutes
|
// Device wakes up every 4 hours, this interval of 8h 2m allows us to miss one wakeup notification before marking offline
|
||||||
sendEvent(name: "checkInterval", value: 8 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
|
sendEvent(name: "checkInterval", value: 8 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
|
||||||
|
|
||||||
|
// default initial state
|
||||||
|
sendEvent(name: "water", value: "dry")
|
||||||
|
|
||||||
def cmds = []
|
def cmds = []
|
||||||
|
|
||||||
cmds += zwave.wakeUpV2.wakeUpIntervalSet(seconds:21600, nodeid: zwaveHubNodeId)//FGFS' default wake up interval
|
cmds << zwave.associationV2.associationSet(groupingIdentifier:1, nodeId: [zwaveHubNodeId])
|
||||||
cmds += zwave.manufacturerSpecificV2.manufacturerSpecificGet()
|
cmds << zwave.batteryV1.batteryGet() // other queries sent as response to BatteryReport
|
||||||
cmds += zwave.manufacturerSpecificV2.deviceSpecificGet()
|
|
||||||
cmds += zwave.versionV1.versionGet()
|
|
||||||
cmds += zwave.batteryV1.batteryGet()
|
|
||||||
cmds += zwave.sensorMultilevelV5.sensorMultilevelGet(sensorType: 1, scale: 0)
|
|
||||||
cmds += zwave.associationV2.associationSet(groupingIdentifier:1, nodeId: [zwaveHubNodeId])
|
|
||||||
cmds += zwave.wakeUpV2.wakeUpNoMoreInformation()
|
|
||||||
|
|
||||||
encapSequence(cmds, 500)
|
encapSequence(cmds, 200)
|
||||||
}
|
}
|
||||||
|
|
||||||
private secure(physicalgraph.zwave.Command cmd) {
|
private secure(physicalgraph.zwave.Command cmd) {
|
||||||
@@ -260,13 +277,10 @@ private encapSequence(commands, delay=200) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private encap(physicalgraph.zwave.Command cmd) {
|
private encap(physicalgraph.zwave.Command cmd) {
|
||||||
def secureClasses = [0x20, 0x5A, 0x70, 0x71, 0x84, 0x85, 0x8E, 0x9C]
|
if (zwaveInfo.zw && !zwaveInfo.zw.contains("s")) {
|
||||||
|
// Secure inclusion failed
|
||||||
//todo: check if secure inclusion was successful
|
|
||||||
//if not do not send security-encapsulated command
|
|
||||||
if (secureClasses.find{ it == cmd.commandClassId }) {
|
|
||||||
secure(cmd)
|
|
||||||
} else {
|
|
||||||
crc16(cmd)
|
crc16(cmd)
|
||||||
|
} else {
|
||||||
|
secure(cmd)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -47,6 +47,9 @@ metadata {
|
|||||||
command "test"
|
command "test"
|
||||||
|
|
||||||
fingerprint deviceId: "0xA102", inClusters: "0x30,0x9C,0x60,0x85,0x8E,0x72,0x70,0x86,0x80,0x84"
|
fingerprint deviceId: "0xA102", inClusters: "0x30,0x9C,0x60,0x85,0x8E,0x72,0x70,0x86,0x80,0x84"
|
||||||
|
fingerprint mfr:"010F", prod:"0000", model:"2002"
|
||||||
|
fingerprint mfr:"010F", prod:"0000", model:"1002"
|
||||||
|
fingerprint mfr:"010F", prod:"0B00", model:"1001"
|
||||||
}
|
}
|
||||||
|
|
||||||
simulator {
|
simulator {
|
||||||
@@ -108,20 +111,11 @@ def parse(String description)
|
|||||||
{
|
{
|
||||||
def result = []
|
def result = []
|
||||||
|
|
||||||
if (description == "updated") {
|
|
||||||
if (!state.MSR) {
|
|
||||||
result << response(zwave.wakeUpV1.wakeUpIntervalSet(seconds: 60*60, nodeid:zwaveHubNodeId))
|
|
||||||
result << response(zwave.manufacturerSpecificV2.manufacturerSpecificGet())
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
def cmd = zwave.parse(description, [0x31: 2, 0x30: 1, 0x70: 2, 0x71: 1, 0x84: 1, 0x80: 1, 0x9C: 1, 0x72: 2, 0x56: 2, 0x60: 3])
|
def cmd = zwave.parse(description, [0x31: 2, 0x30: 1, 0x70: 2, 0x71: 1, 0x84: 1, 0x80: 1, 0x9C: 1, 0x72: 2, 0x56: 2, 0x60: 3])
|
||||||
|
|
||||||
if (cmd) {
|
if (cmd) {
|
||||||
result += zwaveEvent(cmd) //createEvent(zwaveEvent(cmd))
|
result += zwaveEvent(cmd) //createEvent(zwaveEvent(cmd))
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
result << response(zwave.batteryV1.batteryGet().format())
|
|
||||||
|
|
||||||
if ( result[0] != null ) {
|
if ( result[0] != null ) {
|
||||||
log.debug "Parse returned ${result}"
|
log.debug "Parse returned ${result}"
|
||||||
@@ -143,10 +137,9 @@ def zwaveEvent(physicalgraph.zwave.commands.wakeupv1.WakeUpNotification cmd) {
|
|||||||
def result = [createEvent(descriptionText: "${device.displayName} woke up", isStateChange: false)]
|
def result = [createEvent(descriptionText: "${device.displayName} woke up", isStateChange: false)]
|
||||||
if (!isConfigured()) {
|
if (!isConfigured()) {
|
||||||
// we're still in the process of configuring a newly joined device
|
// we're still in the process of configuring a newly joined device
|
||||||
result += lateConfigure(true)
|
result << lateConfigure(true)
|
||||||
} else {
|
} else {
|
||||||
result += response(zwave.wakeUpV1.wakeUpNoMoreInformation())
|
result << response(zwave.wakeUpV1.wakeUpNoMoreInformation())
|
||||||
log.debug "We're done with WakeUp!"
|
|
||||||
}
|
}
|
||||||
result
|
result
|
||||||
}
|
}
|
||||||
@@ -305,9 +298,12 @@ def lateConfigure(setConf = False) {
|
|||||||
*/
|
*/
|
||||||
def configure() {
|
def configure() {
|
||||||
log.debug "Configuring Device..."
|
log.debug "Configuring Device..."
|
||||||
// Device-Watch simply pings if no device events received for 8 hrs & 2 minutes
|
// Device wakes up every 4 hours, this interval allows us to miss one wakeup notification before marking offline
|
||||||
sendEvent(name: "checkInterval", value: 8 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
|
sendEvent(name: "checkInterval", value: 8 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID])
|
||||||
|
|
||||||
|
// default initial state
|
||||||
|
sendEvent(name: "water", value: "dry")
|
||||||
|
|
||||||
def cmds = []
|
def cmds = []
|
||||||
|
|
||||||
// send associate to group 2 to get alarm data
|
// send associate to group 2 to get alarm data
|
||||||
@@ -318,13 +314,15 @@ def configure() {
|
|||||||
// send associate to group 3 to get sensor data reported only to hub
|
// send associate to group 3 to get sensor data reported only to hub
|
||||||
cmds << zwave.associationV2.associationSet(groupingIdentifier:3, nodeId:[zwaveHubNodeId]).format()
|
cmds << zwave.associationV2.associationSet(groupingIdentifier:3, nodeId:[zwaveHubNodeId]).format()
|
||||||
|
|
||||||
// temp hysteresis set to .5 degrees celcius
|
|
||||||
cmds << zwave.configurationV1.configurationSet(configurationValue: [0,50], parameterNumber: 12, size: 2).format()
|
|
||||||
cmds << zwave.configurationV1.configurationGet(parameterNumber: 12).format()
|
|
||||||
|
|
||||||
// reporting frequency of temps and battery set to one hour
|
// reporting frequency of temps and battery set to one hour
|
||||||
cmds << zwave.configurationV1.configurationSet(configurationValue: [0,60*60], parameterNumber: 10, size: 2).format()
|
cmds << zwave.configurationV1.configurationSet(configurationValue: [0,60*60], parameterNumber: 10, size: 2).format()
|
||||||
cmds << zwave.configurationV1.configurationGet(parameterNumber: 10).format()
|
// cmds << zwave.configurationV1.configurationGet(parameterNumber: 10).format()
|
||||||
|
|
||||||
|
// temp hysteresis set to .5 degrees celcius
|
||||||
|
cmds << zwave.configurationV1.configurationSet(configurationValue: [0,50], parameterNumber: 12, size: 2).format()
|
||||||
|
// cmds << zwave.configurationV1.configurationGet(parameterNumber: 12).format()
|
||||||
|
|
||||||
|
cmds << zwave.batteryV1.batteryGet().format()
|
||||||
|
|
||||||
cmds << zwave.wakeUpV1.wakeUpNoMoreInformation().format()
|
cmds << zwave.wakeUpV1.wakeUpNoMoreInformation().format()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user