forked from SmartThingsCommunity/SmartThingsPublic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ICP-3042 Fan Controller DTH (SmartThingsCommunity#3117)
ICP-3042 Fan Controller DTH
- Loading branch information
Showing
2 changed files
with
160 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
160 changes: 160 additions & 0 deletions
160
devicetypes/smartthings/zwave-fan-controller.src/zwave-fan-controller.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
/** | ||
* Copyright 2018 SmartThings | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at: | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License | ||
* for the specific language governing permissions and limitations under the License. | ||
* | ||
*/ | ||
metadata { | ||
definition(name: "Z-Wave Fan Controller", namespace: "smartthings", author: "SmartThings", ocfDeviceType: "oic.d.fan") { | ||
capability "Switch Level" | ||
capability "Switch" | ||
capability "Fan Speed" | ||
capability "Health Check" | ||
capability "Actuator" | ||
capability "Refresh" | ||
capability "Sensor" | ||
|
||
command "low" | ||
command "medium" | ||
command "high" | ||
command "raiseFanSpeed" | ||
command "lowerFanSpeed" | ||
|
||
fingerprint mfr: "001D", prod: "1001", model: "0334", deviceJoinName: "Leviton 3-Speed Fan Controller" | ||
fingerprint mfr: "0063", prod: "4944", model: "3034", deviceJoinName: "GE In-Wall Smart Fan Control" | ||
fingerprint mfr: "0063", prod: "4944", model: "3131", deviceJoinName: "GE In-Wall Smart Fan Control" | ||
fingerprint mfr: "0039", prod: "4944", model: "3131", deviceJoinName: "Honeywell Z-Wave Plus In-Wall Fan Speed Control" | ||
} | ||
|
||
simulator { | ||
status "00%": "command: 2003, payload: 00" | ||
status "33%": "command: 2003, payload: 21" | ||
status "66%": "command: 2003, payload: 42" | ||
status "99%": "command: 2003, payload: 63" | ||
} | ||
|
||
tiles(scale: 2) { | ||
multiAttributeTile(name: "fanSpeed", type: "generic", width: 6, height: 4, canChangeIcon: true) { | ||
tileAttribute("device.fanSpeed", key: "PRIMARY_CONTROL") { | ||
attributeState "0", label: "off", action: "switch.on", icon: "st.thermostat.fan-off", backgroundColor: "#ffffff" | ||
attributeState "1", label: "low", action: "switch.off", icon: "st.thermostat.fan-on", backgroundColor: "#00a0dc" | ||
attributeState "2", label: "medium", action: "switch.off", icon: "st.thermostat.fan-on", backgroundColor: "#00a0dc" | ||
attributeState "3", label: "high", action: "switch.off", icon: "st.thermostat.fan-on", backgroundColor: "#00a0dc" | ||
} | ||
tileAttribute("device.fanSpeed", key: "VALUE_CONTROL") { | ||
attributeState "VALUE_UP", action: "raiseFanSpeed" | ||
attributeState "VALUE_DOWN", action: "lowerFanSpeed" | ||
} | ||
} | ||
|
||
standardTile("refresh", "device.switch", width: 2, height: 2, inactiveLabel: false, decoration: "flat") { | ||
state "default", label: '', action: "refresh.refresh", icon: "st.secondary.refresh" | ||
} | ||
main "fanSpeed" | ||
details(["fanSpeed", "refresh"]) | ||
} | ||
|
||
} | ||
|
||
def installed() { | ||
sendEvent(name: "checkInterval", value: 2 * 15 * 60 + 2 * 60, displayed: false, data: [protocol: "zwave", hubHardwareId: device.hub.hardwareID, offlinePingable: "1"]) | ||
response(refresh()) | ||
} | ||
|
||
def parse(String description) { | ||
def result = null | ||
if (description != "updated") { | ||
log.debug "parse() >> zwave.parse($description)" | ||
def cmd = zwave.parse(description, [0x20: 1, 0x26: 1]) | ||
if (cmd) { | ||
result = zwaveEvent(cmd) | ||
} | ||
} | ||
if (result?.name == 'hail' && hubFirmwareLessThan("000.011.00602")) { | ||
result = [result, response(zwave.basicV1.basicGet())] | ||
log.debug "Was hailed: requesting state update" | ||
} else { | ||
log.debug "Parse returned ${result?.descriptionText}" | ||
} | ||
return result | ||
} | ||
|
||
def zwaveEvent(physicalgraph.zwave.commands.basicv1.BasicReport cmd) { | ||
fanEvents(cmd) | ||
} | ||
|
||
def zwaveEvent(physicalgraph.zwave.commands.basicv1.BasicSet cmd) { | ||
fanEvents(cmd) | ||
} | ||
|
||
def zwaveEvent(physicalgraph.zwave.commands.switchmultilevelv1.SwitchMultilevelReport cmd) { | ||
fanEvents(cmd) | ||
} | ||
|
||
def zwaveEvent(physicalgraph.zwave.commands.switchmultilevelv1.SwitchMultilevelSet cmd) { | ||
fanEvents(cmd) | ||
} | ||
|
||
def fanEvents(physicalgraph.zwave.Command cmd) { | ||
def value = (cmd.value ? "on" : "off") | ||
def result = [createEvent(name: "switch", value: value)] | ||
result << createEvent(name: "level", value: cmd.value == 99 ? 100 : cmd.value) | ||
result << createEvent(name: "fanSpeed", value: cmd.value/33) | ||
return result | ||
} | ||
|
||
def on() { | ||
setLevel(0xFF) | ||
} | ||
|
||
def off() { | ||
setLevel(0x00) | ||
} | ||
|
||
def setLevel(value) { | ||
log.debug "setLevel >> value: $value" | ||
def level = value as Integer | ||
level = level == 255 ? level : Math.max(Math.min(level, 99), 0) | ||
sendEvent(name: "switch", value: level > 0 ? "on" : "off") | ||
delayBetween([zwave.basicV1.basicSet(value: level).format(), zwave.switchMultilevelV1.switchMultilevelGet().format()], 5000) | ||
} | ||
|
||
def setFanSpeed(speed) { | ||
setLevel(speed * 33) | ||
} | ||
|
||
def raiseFanSpeed() { | ||
setFanSpeed(Math.min((device.currentValue("fanSpeed") as Integer) + 1, 3)) | ||
} | ||
|
||
def lowerFanSpeed() { | ||
setFanSpeed(Math.max((device.currentValue("fanSpeed") as Integer) - 1, 0)) | ||
} | ||
|
||
def low() { | ||
setFanSpeed(1) | ||
} | ||
|
||
def medium() { | ||
setFanSpeed(2) | ||
} | ||
|
||
def high() { | ||
setFanSpeed(3) | ||
} | ||
|
||
def refresh() { | ||
zwave.switchMultilevelV1.switchMultilevelGet().format() | ||
} | ||
|
||
def ping() { | ||
refresh() | ||
} | ||
|