mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-17 21:03:30 +00:00
Compare commits
19 Commits
PROD_2017.
...
MSA-2073-2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6cd942bbcc | ||
|
|
4547d0543b | ||
|
|
59e6f1251b | ||
|
|
e8939a77d7 | ||
|
|
5aee3a1861 | ||
|
|
17ae692aa0 | ||
|
|
f02428b99f | ||
|
|
34174b730c | ||
|
|
12f874408a | ||
|
|
513e44912c | ||
|
|
6e1701f955 | ||
|
|
9f5378c2b6 | ||
|
|
39e828b16d | ||
|
|
91a77afb2d | ||
|
|
006ffa8a0b | ||
|
|
17465c87c0 | ||
|
|
370b435874 | ||
|
|
be9bdae4cc | ||
|
|
c278e035f6 |
@@ -0,0 +1,464 @@
|
|||||||
|
/**
|
||||||
|
* Intermatic PE653 Pool Control System
|
||||||
|
*
|
||||||
|
* Copyright 2014 bigpunk6
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* Don't use Cooper Lee's code (vTile_ms, ms_w_vts) he was working on a different implementation than me.
|
||||||
|
*
|
||||||
|
* Install my device type then use the Multi-Channel Controll App by SmartThings from the Marketplace under the More section.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
metadata {
|
||||||
|
definition (name: "Intermatic PE653 Pool Control System", author: "bigpunk6", namespace: "bigpunk6") {
|
||||||
|
capability "Actuator"
|
||||||
|
capability "Switch"
|
||||||
|
capability "Polling"
|
||||||
|
capability "Configuration"
|
||||||
|
capability "Refresh"
|
||||||
|
capability "Temperature Measurement"
|
||||||
|
capability "Sensor"
|
||||||
|
capability "Zw Multichannel"
|
||||||
|
capability "Thermostat"
|
||||||
|
|
||||||
|
attribute "operationMode", "string"
|
||||||
|
attribute "firemanTimeout", "string"
|
||||||
|
attribute "temperatureOffsets", "string"
|
||||||
|
attribute "poolspaConfig", "string"
|
||||||
|
attribute "poolSetpoint", "string"
|
||||||
|
attribute "spaSetpoint", "string"
|
||||||
|
attribute "setPoolSetpoint", "string"
|
||||||
|
attribute "pool", "string"
|
||||||
|
attribute "setSpaSetpoint", "string"
|
||||||
|
attribute "spa", "string"
|
||||||
|
|
||||||
|
command "quickSetPool"
|
||||||
|
command "quickSetSpa"
|
||||||
|
|
||||||
|
fingerprint deviceId: "0x1001", inClusters: "0x91,0x73,0x72,0x86,0x81,0x60,0x70,0x85,0x25,0x27,0x43,0x31", outClusters: "0x82"
|
||||||
|
}
|
||||||
|
|
||||||
|
preferences {
|
||||||
|
input "operationMode1", "enum", title: "Boster/Cleaner Pump",
|
||||||
|
options:[1:"No",
|
||||||
|
2:"Uses Circuit-1",
|
||||||
|
3:"Variable Speed pump Speed-1",
|
||||||
|
4:"Variable Speed pump Speed-2",
|
||||||
|
5:"Variable Speed pump Speed-3",
|
||||||
|
6:"Variable Speed pump Speed-4"]
|
||||||
|
input "operationMode2", "enum", title: "Pump Type",
|
||||||
|
options:[0:"1 Speed Pump without Booster/Cleaner",
|
||||||
|
1:"1 Speed Pump with Booster/Cleaner",
|
||||||
|
2:"2 Speed Pump without Booster/Cleaner",
|
||||||
|
3:"2 Speed Pump with Booster/Cleaner"]
|
||||||
|
input "poolSpa1", "enum", title: "Pool or Spa", options:[0:"Pool",1:"Spa",2:"Both"]
|
||||||
|
input "fireman", "enum", title: "Fireman Timeout",
|
||||||
|
options:["255":"No heater installed",
|
||||||
|
"0":"No cool down period",
|
||||||
|
"1":"1 minute",
|
||||||
|
"2":"2 minute",
|
||||||
|
"3":"3 minute",
|
||||||
|
"4":"4 minute",
|
||||||
|
"5":"5 minute",
|
||||||
|
"6":"6 minute",
|
||||||
|
"7":"7 minute",
|
||||||
|
"8":"8 minute",
|
||||||
|
"9":"9 minute",
|
||||||
|
"10":"10 minute",
|
||||||
|
"11":"11 minute",
|
||||||
|
"12":"12 minute",
|
||||||
|
"13":"13 minute",
|
||||||
|
"14":"14 minute",
|
||||||
|
"15":"15 minute"]
|
||||||
|
input "tempOffsetwater", "number", title: "Water temperature offset", defaultValue: 0, required: true
|
||||||
|
input "tempOffsetair", "number",
|
||||||
|
title: "Air temperature offset - Sets the Offset of the air temerature for the add-on Thermometer in degrees Fahrenheit -20F to +20F", defaultValue: 0, required: true
|
||||||
|
}
|
||||||
|
|
||||||
|
simulator {
|
||||||
|
status "on": "command: 2003, payload: FF"
|
||||||
|
status "off": "command: 2003, payload: 00"
|
||||||
|
reply "8E010101,delay 800,6007": "command: 6008, payload: 4004"
|
||||||
|
reply "8505": "command: 8506, payload: 02"
|
||||||
|
reply "59034002": "command: 5904, payload: 8102003101000000"
|
||||||
|
reply "6007": "command: 6008, payload: 0002"
|
||||||
|
reply "600901": "command: 600A, payload: 10002532"
|
||||||
|
reply "600902": "command: 600A, payload: 210031"
|
||||||
|
}
|
||||||
|
|
||||||
|
// tile definitions
|
||||||
|
tiles(scale: 2) {
|
||||||
|
multiAttributeTile(name:"temperature", type: "thermostat", width: 6, height: 4){
|
||||||
|
tileAttribute ("device.temperature", key: "PRIMARY_CONTROL") {
|
||||||
|
attributeState "temperature", label:'${currentValue}°',
|
||||||
|
backgroundColors:[
|
||||||
|
[value: 32, color: "#153591"],
|
||||||
|
[value: 54, color: "#1e9cbb"],
|
||||||
|
[value: 64, color: "#90d2a7"],
|
||||||
|
[value: 74, color: "#44b621"],
|
||||||
|
[value: 90, color: "#f1d801"],
|
||||||
|
[value: 98, color: "#d04e00"],
|
||||||
|
[value: 110, color: "#bc2323"]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
tileAttribute ("device.poolSetpoint", key: "VALUE_CONTROL") {
|
||||||
|
attributeState "poolSetpoint", action:"quickSetPool"
|
||||||
|
}
|
||||||
|
tileAttribute ("device.spaSetpoint", key: "SECONDARY_CONTROL") {
|
||||||
|
attributeState "spaSetpoint", label:'Spa set to ${currentValue}°F'
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
controlTile("poolSliderControl", "device.poolSetpoint", "slider", height: 2, width: 4, inactiveLabel: false, range:"(40..104)") {
|
||||||
|
state "setPoolSetpoint", action:"quickSetPool", backgroundColor:"#d04e00"
|
||||||
|
}
|
||||||
|
valueTile("poolSetpoint", "device.poolSetpoint", width: 2, height: 2, inactiveLabel: false, decoration: "flat") {
|
||||||
|
state "pool", label:'${currentValue}° pool', backgroundColor:"#ffffff"
|
||||||
|
}
|
||||||
|
controlTile("spaSliderControl", "device.spaSetpoint", "slider", height: 2, width: 4, inactiveLabel: false, range:"(40..104)") {
|
||||||
|
state "setSpaSetpoint", action:"quickSetSpa", backgroundColor: "#1e9cbb"
|
||||||
|
}
|
||||||
|
valueTile("spaSetpoint", "device.spaSetpoint", width: 2, height: 2, inactiveLabel: false, decoration: "flat") {
|
||||||
|
state "spa", label:'${currentValue}° spa', backgroundColor:"#ffffff"
|
||||||
|
}
|
||||||
|
/*valueTile("temperature", "device.temperature") {
|
||||||
|
state("temperature", label:'${currentValue}°', unit:"F",
|
||||||
|
backgroundColors:[
|
||||||
|
[value: 32, color: "#153591"],
|
||||||
|
[value: 54, color: "#1e9cbb"],
|
||||||
|
[value: 64, color: "#90d2a7"],
|
||||||
|
[value: 74, color: "#44b621"],
|
||||||
|
[value: 90, color: "#f1d801"],
|
||||||
|
[value: 98, color: "#d04e00"],
|
||||||
|
[value: 110, color: "#bc2323"]
|
||||||
|
]
|
||||||
|
)
|
||||||
|
}*/
|
||||||
|
standardTile("refresh", "device.switch", width: 2, height: 2, inactiveLabel: false, decoration: "flat") {
|
||||||
|
state "default", label:'', action:"refresh.refresh", icon:"st.secondary.refresh"
|
||||||
|
}
|
||||||
|
standardTile("configure", "device.configure", width: 2, height: 2, inactiveLabel: false, decoration: "flat") {
|
||||||
|
state "configure", label:'', action:"configuration.configure", icon:"st.secondary.configure"
|
||||||
|
}
|
||||||
|
|
||||||
|
main "temperature"
|
||||||
|
details(["temperature", "poolSliderControl", "poolSetpoint", "spaSliderControl", "spaSetpoint", "configure", "refresh"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def parse(String description) {
|
||||||
|
def result = null
|
||||||
|
if (description.startsWith("Err")) {
|
||||||
|
log.warn "Error in Parse"
|
||||||
|
result = createEvent(descriptionText:description, isStateChange:true)
|
||||||
|
} else {
|
||||||
|
def cmd = zwave.parse(description, [0x20: 1, 0x25:1, 0x27:1, 0x31:1, 0x43:1, 0x60:3, 0x70:2, 0x81:1, 0x85:1, 0x86: 1, 0x73:1])
|
||||||
|
if (cmd) {
|
||||||
|
result = zwaveEvent(cmd)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
log.debug("'$description' parsed to $result")
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
|
//Thermostat
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.thermostatmodev2.ThermostatModeReport cmd) {
|
||||||
|
log.debug "ThermostatModeReport $cmd"
|
||||||
|
def map = [:]
|
||||||
|
switch (cmd.mode) {
|
||||||
|
case physicalgraph.zwave.commands.thermostatmodev2.ThermostatModeReport.MODE_HEAT:
|
||||||
|
map.value = "pool"
|
||||||
|
break
|
||||||
|
case physicalgraph.zwave.commands.thermostatmodev2.ThermostatModeReport.MODE_FURNACE:
|
||||||
|
map.value = "spa"
|
||||||
|
break
|
||||||
|
}
|
||||||
|
map.name = "thermostatMode"
|
||||||
|
map
|
||||||
|
}
|
||||||
|
|
||||||
|
def quickSetPool(degrees) {
|
||||||
|
log.debug "quickSetPool $degrees"
|
||||||
|
setPoolSetpoint(degrees, 1000)
|
||||||
|
}
|
||||||
|
|
||||||
|
def setPoolSetpoint(degrees, delay = 30000) {
|
||||||
|
setPoolSetpoint(degrees.toDouble(), delay)
|
||||||
|
}
|
||||||
|
|
||||||
|
def setPoolSetpoint(Double degrees, Integer delay = 30000) {
|
||||||
|
log.trace "setPoolSetpoint($degrees, $delay)"
|
||||||
|
def deviceScale = state.scale ?: 1
|
||||||
|
def deviceScaleString = deviceScale == 2 ? "C" : "F"
|
||||||
|
def locationScale = getTemperatureScale()
|
||||||
|
def p = (state.precision == null) ? 1 : state.precision
|
||||||
|
|
||||||
|
def convertedDegrees
|
||||||
|
if (locationScale == "C" && deviceScaleString == "F") {
|
||||||
|
convertedDegrees = celsiusToFahrenheit(degrees)
|
||||||
|
} else if (locationScale == "F" && deviceScaleString == "C") {
|
||||||
|
convertedDegrees = fahrenheitToCelsius(degrees)
|
||||||
|
} else {
|
||||||
|
convertedDegrees = degrees
|
||||||
|
}
|
||||||
|
|
||||||
|
delayBetween([
|
||||||
|
zwave.thermostatSetpointV1.thermostatSetpointSet(setpointType: 1, scale: deviceScale, precision: p, scaledValue: convertedDegrees).format(),
|
||||||
|
zwave.thermostatSetpointV1.thermostatSetpointGet(setpointType: 1).format()
|
||||||
|
], delay)
|
||||||
|
}
|
||||||
|
|
||||||
|
def quickSetSpa(degrees) {
|
||||||
|
setSpaSetpoint(degrees, 1000)
|
||||||
|
}
|
||||||
|
|
||||||
|
def setSpaSetpoint(degrees, delay = 30000) {
|
||||||
|
setSpaSetpoint(degrees.toDouble(), delay)
|
||||||
|
}
|
||||||
|
|
||||||
|
def setSpaSetpoint(Double degrees, Integer delay = 30000) {
|
||||||
|
log.trace "setSpaSetpoint($degrees, $delay)"
|
||||||
|
def deviceScale = state.scale ?: 1
|
||||||
|
def deviceScaleString = deviceScale == 2 ? "C" : "F"
|
||||||
|
def locationScale = getTemperatureScale()
|
||||||
|
def p = (state.precision == null) ? 1 : state.precision
|
||||||
|
|
||||||
|
def convertedDegrees
|
||||||
|
if (locationScale == "C" && deviceScaleString == "F") {
|
||||||
|
convertedDegrees = celsiusToFahrenheit(degrees)
|
||||||
|
} else if (locationScale == "F" && deviceScaleString == "C") {
|
||||||
|
convertedDegrees = fahrenheitToCelsius(degrees)
|
||||||
|
} else {
|
||||||
|
convertedDegrees = degrees
|
||||||
|
}
|
||||||
|
|
||||||
|
delayBetween([
|
||||||
|
zwave.thermostatSetpointV1.thermostatSetpointSet(setpointType: 7, scale: deviceScale, precision: p, scaledValue: convertedDegrees).format(),
|
||||||
|
zwave.thermostatSetpointV1.thermostatSetpointGet(setpointType: 7).format()
|
||||||
|
], delay)
|
||||||
|
}
|
||||||
|
|
||||||
|
//Reports
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.configurationv2.ConfigurationReport cmd) {
|
||||||
|
log.debug "configuration: $cmd"
|
||||||
|
def map = [:]
|
||||||
|
map.value = cmd.configurationValue
|
||||||
|
map.displayed = false
|
||||||
|
switch (cmd.parameterNumber) {
|
||||||
|
case 1:
|
||||||
|
map.name = "operationMode"
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
map.name = "firemanTimeout"
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
map.name = "temperatureOffsets"
|
||||||
|
break;
|
||||||
|
case 19:
|
||||||
|
map.name = "poolspaConfig"
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return [:]
|
||||||
|
}
|
||||||
|
createEvent(map)
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.sensormultilevelv1.SensorMultilevelReport cmd) {
|
||||||
|
log.debug "Sensor: $cmd"
|
||||||
|
def map = [:]
|
||||||
|
map.value = cmd.scaledSensorValue.toString()
|
||||||
|
map.unit = cmd.scale == 1 ? "F" : "C"
|
||||||
|
map.name = "temperature"
|
||||||
|
createEvent(map)
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.thermostatsetpointv1.ThermostatSetpointReport cmd) {
|
||||||
|
def map = [:]
|
||||||
|
map.value = cmd.scaledValue.toString()
|
||||||
|
map.unit = cmd.scale == 1 ? "F" : "C"
|
||||||
|
map.displayed = false
|
||||||
|
switch (cmd.setpointType) {
|
||||||
|
case 1:
|
||||||
|
map.name = "poolSetpoint"
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
map.name = "spaSetpoint"
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return [:]
|
||||||
|
}
|
||||||
|
// So we can respond with same format
|
||||||
|
state.size = cmd.size
|
||||||
|
state.scale = cmd.scale
|
||||||
|
state.precision = cmd.precision
|
||||||
|
createEvent(map)
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.basicv1.BasicReport cmd) {
|
||||||
|
log.debug "$cmd"
|
||||||
|
if (cmd.value == 0) {
|
||||||
|
createEvent(name: "switch", value: "off")
|
||||||
|
} else if (cmd.value == 255) {
|
||||||
|
createEvent(name: "switch", value: "on")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.multichannelv3.MultiInstanceReport cmd) {
|
||||||
|
log.debug "MultiInstanceReport $cmd"
|
||||||
|
}
|
||||||
|
|
||||||
|
private List loadEndpointInfo() {
|
||||||
|
if (state.endpointInfo) {
|
||||||
|
state.endpointInfo
|
||||||
|
} else if (device.currentValue("epInfo")) {
|
||||||
|
fromJson(device.currentValue("epInfo"))
|
||||||
|
} else {
|
||||||
|
[]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.multichannelv3.MultiChannelEndPointReport cmd) {
|
||||||
|
log.debug "$cmd"
|
||||||
|
updateDataValue("endpoints", cmd.endPoints.toString())
|
||||||
|
if (!state.endpointInfo) {
|
||||||
|
state.endpointInfo = loadEndpointInfo()
|
||||||
|
}
|
||||||
|
if (state.endpointInfo.size() > cmd.endPoints) {
|
||||||
|
cmd.endpointInfo
|
||||||
|
}
|
||||||
|
state.endpointInfo = [null] * cmd.endPoints
|
||||||
|
//response(zwave.associationV2.associationGroupingsGet())
|
||||||
|
[ createEvent(name: "epInfo", value: util.toJson(state.endpointInfo), displayed: false, descriptionText:""),
|
||||||
|
response(zwave.multiChannelV3.multiChannelCapabilityGet(endPoint: 1)) ]
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.multichannelv3.MultiChannelCapabilityReport cmd) {
|
||||||
|
log.debug "$cmd"
|
||||||
|
def result = []
|
||||||
|
def cmds = []
|
||||||
|
if(!state.endpointInfo) state.endpointInfo = []
|
||||||
|
state.endpointInfo[cmd.endPoint - 1] = cmd.format()[6..-1]
|
||||||
|
if (cmd.endPoint < getDataValue("endpoints").toInteger()) {
|
||||||
|
cmds = zwave.multiChannelV3.multiChannelCapabilityGet(endPoint: cmd.endPoint + 1).format()
|
||||||
|
} else {
|
||||||
|
log.debug "endpointInfo: ${state.endpointInfo.inspect()}"
|
||||||
|
}
|
||||||
|
result << createEvent(name: "epInfo", value: util.toJson(state.endpointInfo), displayed: false, descriptionText:"")
|
||||||
|
if(cmds) result << response(cmds)
|
||||||
|
result
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.associationv2.AssociationGroupingsReport cmd) {
|
||||||
|
log.debug "$cmd"
|
||||||
|
state.groups = cmd.supportedGroupings
|
||||||
|
if (cmd.supportedGroupings > 1) {
|
||||||
|
[response(zwave.associationGrpInfoV1.associationGroupInfoGet(groupingIdentifier:2, listMode:1))]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.associationgrpinfov1.AssociationGroupInfoReport cmd) {
|
||||||
|
log.debug "$cmd"
|
||||||
|
def cmds = []
|
||||||
|
for (def i = 2; i <= state.groups; i++) {
|
||||||
|
cmds << response(zwave.multiChannelAssociationV2.multiChannelAssociationSet(groupingIdentifier:i, nodeId:zwaveHubNodeId))
|
||||||
|
}
|
||||||
|
cmds
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.commands.multichannelv3.MultiChannelCmdEncap cmd) {
|
||||||
|
log.debug "$cmd"
|
||||||
|
def encapsulatedCommand = cmd.encapsulatedCommand([0x32: 3, 0x25: 1, 0x20: 1])
|
||||||
|
if (encapsulatedCommand) {
|
||||||
|
if (state.enabledEndpoints.find { it == cmd.sourceEndPoint }) {
|
||||||
|
def formatCmd = ([cmd.commandClass, cmd.command] + cmd.parameter).collect{ String.format("%02X", it) }.join()
|
||||||
|
createEvent(name: "epEvent", value: "$cmd.sourceEndPoint:$formatCmd", isStateChange: true, displayed: false, descriptionText: "(fwd to ep $cmd.sourceEndPoint)")
|
||||||
|
} else {
|
||||||
|
zwaveEvent(encapsulatedCommand, cmd.sourceEndPoint as Integer)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def zwaveEvent(physicalgraph.zwave.Command cmd) {
|
||||||
|
log.warn "Captured zwave command $cmd"
|
||||||
|
createEvent(descriptionText: "$device.displayName: $cmd", isStateChange: true)
|
||||||
|
}
|
||||||
|
|
||||||
|
//Commands
|
||||||
|
|
||||||
|
def epCmd(Integer ep, String cmds) {
|
||||||
|
log.debug "epCmd: $ep $cmds"
|
||||||
|
if (cmds.contains('2001FF')){
|
||||||
|
log.debug "contained 2001FF"
|
||||||
|
delayBetween([
|
||||||
|
encap(zwave.switchBinaryV1.switchBinarySet(switchValue: 0xFF), ep),
|
||||||
|
encap(zwave.switchBinaryV1.switchBinaryGet(), ep)
|
||||||
|
], 2300)
|
||||||
|
} else if (cmds.contains('200100')) {
|
||||||
|
log.debug "contained 2001FF"
|
||||||
|
delayBetween([
|
||||||
|
encap(zwave.switchBinaryV1.switchBinarySet(switchValue: 0), ep),
|
||||||
|
encap(zwave.switchBinaryV1.switchBinaryGet(), ep)
|
||||||
|
], 2300)
|
||||||
|
} else if (cmds.contains('2002')) {
|
||||||
|
encap(zwave.switchBinaryV1.switchBinaryGet(), ep)
|
||||||
|
} else {
|
||||||
|
log.warn "No CMD found"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def enableEpEvents(enabledEndpoints) {
|
||||||
|
state.enabledEndpoints = enabledEndpoints.split(",").findAll()*.toInteger()
|
||||||
|
null
|
||||||
|
}
|
||||||
|
|
||||||
|
private command(physicalgraph.zwave.Command cmd) {
|
||||||
|
log.debug "command: $cmd"
|
||||||
|
cmd.format()
|
||||||
|
}
|
||||||
|
|
||||||
|
private encap(cmd, endpoint) {
|
||||||
|
if (endpoint) {
|
||||||
|
command(zwave.multiChannelV3.multiChannelCmdEncap(destinationEndPoint:endpoint, sourceEndPoint: endpoint).encapsulate(cmd))
|
||||||
|
} else {
|
||||||
|
command(cmd)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
def poll() {
|
||||||
|
zwave.sensorMultilevelV1.sensorMultilevelGet().format()
|
||||||
|
}
|
||||||
|
|
||||||
|
def refresh() {
|
||||||
|
delayBetween([
|
||||||
|
zwave.multiChannelV3.multiChannelCmdEncap(sourceEndPoint:1, destinationEndPoint:1, commandClass:37, command:2).format(),
|
||||||
|
zwave.multiChannelV3.multiChannelCmdEncap(sourceEndPoint:2, destinationEndPoint:2, commandClass:37, command:2).format(),
|
||||||
|
zwave.multiChannelV3.multiChannelCmdEncap(sourceEndPoint:3, destinationEndPoint:3, commandClass:37, command:2).format(),
|
||||||
|
zwave.multiChannelV3.multiChannelCmdEncap(sourceEndPoint:4, destinationEndPoint:4, commandClass:37, command:2).format(),
|
||||||
|
zwave.multiChannelV3.multiChannelCmdEncap(sourceEndPoint:5, destinationEndPoint:5, commandClass:37, command:2).format(),
|
||||||
|
zwave.sensorMultilevelV1.sensorMultilevelGet().format(),
|
||||||
|
zwave.thermostatSetpointV1.thermostatSetpointGet(setpointType: 1).format(),
|
||||||
|
zwave.thermostatSetpointV1.thermostatSetpointGet(setpointType: 7).format(),
|
||||||
|
zwave.configurationV2.configurationGet(parameterNumber: 1).format(),
|
||||||
|
zwave.configurationV2.configurationGet(parameterNumber: 2).format(),
|
||||||
|
zwave.configurationV2.configurationGet(parameterNumber: 3).format(),
|
||||||
|
zwave.configurationV2.configurationGet(parameterNumber: 19).format()
|
||||||
|
], 3000)
|
||||||
|
}
|
||||||
|
|
||||||
|
def configure() {
|
||||||
|
def cmds = []
|
||||||
|
cmds << zwave.configurationV2.configurationSet(configurationValue: [operationMode1.toInteger(), operationMode2.toInteger()], parameterNumber: 1, size: 2).format()
|
||||||
|
cmds << zwave.configurationV2.configurationSet(configurationValue: [tempOffsetwater.toInteger(), tempOffsetair.toInteger(), 0, 0], parameterNumber: 3, size: 4).format()
|
||||||
|
cmds << zwave.configurationV2.configurationSet(configurationValue: [poolSpa1.toInteger()], parameterNumber: 19, size: 1).format()
|
||||||
|
cmds << zwave.configurationV2.configurationSet(configurationValue: [fireman.toInteger()], parameterNumber: 2, size: 1).format()
|
||||||
|
delayBetween(cmds, 2500)
|
||||||
|
}
|
||||||
2
devicetypes/smartthings/aeon-key-fob.src/.st-ignore
Normal file
2
devicetypes/smartthings/aeon-key-fob.src/.st-ignore
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.st-ignore
|
||||||
|
README.md
|
||||||
34
devicetypes/smartthings/aeon-key-fob.src/README.md
Normal file
34
devicetypes/smartthings/aeon-key-fob.src/README.md
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
# Aeon Labs Key Fob
|
||||||
|
|
||||||
|
Cloud Execution
|
||||||
|
|
||||||
|
Works with:
|
||||||
|
|
||||||
|
* [Aeon Labs Key Fob](http://aeotec.com/z-wave-key-fob-remote-control)
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
|
||||||
|
* [Capabilities](#capabilities)
|
||||||
|
* [Health](#device-health)
|
||||||
|
* [Troubleshooting](#troubleshooting)
|
||||||
|
|
||||||
|
## Capabilities
|
||||||
|
|
||||||
|
* **Actuator** - represents device has commands
|
||||||
|
* **Button** - represents a device with one or more buttons
|
||||||
|
* **Holdable Button** - represents a device with one or more holdable buttons
|
||||||
|
* **Configuration** - allows for configuration of devices
|
||||||
|
* **Sensor** - detects sensor events
|
||||||
|
* **Battery** - defines device uses a battery
|
||||||
|
* **Health Check** - indicates ability to get device health notifications
|
||||||
|
|
||||||
|
## Device Health
|
||||||
|
|
||||||
|
Aeon Key Fob is a ZWave totally sleepy device and is marked offline only in the case when Hub is offline.
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
If the device doesn't pair when trying from the SmartThings mobile app, it is possible that the sensor is out of range.
|
||||||
|
Pairing needs to be tried again by placing the sensor closer to the hub.
|
||||||
|
Instructions related to pairing, resetting and removing the Aeon Labs Key Fob from SmartThings can be found in the following link:
|
||||||
|
* [Aeotec Key Fob Troubleshooting Tips](https://support.smartthings.com/hc/en-us/articles/202294120-Aeon-Labs-Key-Fob)
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import groovy.json.JsonOutput
|
||||||
/**
|
/**
|
||||||
* Copyright 2015 SmartThings
|
* Copyright 2015 SmartThings
|
||||||
*
|
*
|
||||||
@@ -19,6 +20,7 @@ metadata {
|
|||||||
capability "Configuration"
|
capability "Configuration"
|
||||||
capability "Sensor"
|
capability "Sensor"
|
||||||
capability "Battery"
|
capability "Battery"
|
||||||
|
capability "Health Check"
|
||||||
|
|
||||||
fingerprint deviceId: "0x0101", inClusters: "0x86,0x72,0x70,0x80,0x84,0x85"
|
fingerprint deviceId: "0x0101", inClusters: "0x86,0x72,0x70,0x80,0x84,0x85"
|
||||||
fingerprint mfr: "0086", prod: "0001", model: "0026", deviceJoinName: "Aeon Panic Button"
|
fingerprint mfr: "0086", prod: "0001", model: "0026", deviceJoinName: "Aeon Panic Button"
|
||||||
@@ -131,6 +133,9 @@ def updated() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
def initialize() {
|
def initialize() {
|
||||||
|
// Arrival sensors only goes OFFLINE when Hub is off
|
||||||
|
sendEvent(name: "DeviceWatch-Enroll", value: JsonOutput.toJson([protocol: "zigbee", scheme:"untracked"]), displayed: false)
|
||||||
|
|
||||||
def zwMap = getZwaveInfo()
|
def zwMap = getZwaveInfo()
|
||||||
def buttons = 4 // Default for Key Fob
|
def buttons = 4 // Default for Key Fob
|
||||||
|
|
||||||
|
|||||||
2
devicetypes/smartthings/aeon-minimote.src/.st-ignore
Normal file
2
devicetypes/smartthings/aeon-minimote.src/.st-ignore
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.st-ignore
|
||||||
|
README.md
|
||||||
33
devicetypes/smartthings/aeon-minimote.src/README.md
Normal file
33
devicetypes/smartthings/aeon-minimote.src/README.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
# Aeon Minimote
|
||||||
|
|
||||||
|
Cloud Execution
|
||||||
|
|
||||||
|
Works with:
|
||||||
|
|
||||||
|
* [Aeotec Minimote](http://aeotec.com/small-z-wave-remote-control)
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
|
||||||
|
* [Capabilities](#capabilities)
|
||||||
|
* [Health](#device-health)
|
||||||
|
* [Troubleshooting](#troubleshooting)
|
||||||
|
|
||||||
|
## Capabilities
|
||||||
|
|
||||||
|
* **Actuator** - represents device has commands
|
||||||
|
* **Button** - represents a device with one or more buttons
|
||||||
|
* **Holdable Button** - represents a device with one or more holdable buttons
|
||||||
|
* **Configuration** - allows for configuration of devices
|
||||||
|
* **Sensor** - detects sensor events
|
||||||
|
* **Health Check** - indicates ability to get device health notifications
|
||||||
|
|
||||||
|
## Device Health
|
||||||
|
|
||||||
|
Aeon Minimote is a ZWave totally sleepy device and is marked offline only in the case when Hub is offline.
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
If the device doesn't pair when trying from the SmartThings mobile app, it is possible that the sensor is out of range.
|
||||||
|
Pairing needs to be tried again by placing the sensor closer to the hub.
|
||||||
|
Instructions related to pairing, resetting and removing the Aeotec Minimote from SmartThings can be found in the following link:
|
||||||
|
* [Aeotec Minimote Troubleshooting Tips](https://support.smartthings.com/hc/en-us/articles/202087904-Aeotec-Minimote)
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import groovy.json.JsonOutput
|
||||||
/**
|
/**
|
||||||
* Copyright 2015 SmartThings
|
* Copyright 2015 SmartThings
|
||||||
*
|
*
|
||||||
@@ -18,6 +19,7 @@ metadata {
|
|||||||
capability "Holdable Button"
|
capability "Holdable Button"
|
||||||
capability "Configuration"
|
capability "Configuration"
|
||||||
capability "Sensor"
|
capability "Sensor"
|
||||||
|
capability "Health Check"
|
||||||
|
|
||||||
fingerprint deviceId: "0x0101", inClusters: "0x86,0x72,0x70,0x9B", outClusters: "0x26,0x2B"
|
fingerprint deviceId: "0x0101", inClusters: "0x86,0x72,0x70,0x9B", outClusters: "0x26,0x2B"
|
||||||
fingerprint deviceId: "0x0101", inClusters: "0x86,0x72,0x70,0x9B,0x85,0x84", outClusters: "0x26" // old style with numbered buttons
|
fingerprint deviceId: "0x0101", inClusters: "0x86,0x72,0x70,0x9B,0x85,0x84", outClusters: "0x26" // old style with numbered buttons
|
||||||
@@ -119,5 +121,7 @@ def updated() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
def initialize() {
|
def initialize() {
|
||||||
|
// Arrival sensors only goes OFFLINE when Hub is off
|
||||||
|
sendEvent(name: "DeviceWatch-Enroll", value: JsonOutput.toJson([protocol: "zigbee", scheme:"untracked"]), displayed: false)
|
||||||
sendEvent(name: "numberOfButtons", value: 4)
|
sendEvent(name: "numberOfButtons", value: 4)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ metadata {
|
|||||||
state "heat", action:"switchMode", nextState: "updating", icon: "st.thermostat.heat"
|
state "heat", action:"switchMode", nextState: "updating", icon: "st.thermostat.heat"
|
||||||
state "cool", action:"switchMode", nextState: "updating", icon: "st.thermostat.cool"
|
state "cool", action:"switchMode", nextState: "updating", icon: "st.thermostat.cool"
|
||||||
state "auto", action:"switchMode", nextState: "updating", icon: "st.thermostat.auto"
|
state "auto", action:"switchMode", nextState: "updating", icon: "st.thermostat.auto"
|
||||||
state "emergency heat", action:"switchMode", icon: "st.thermostat.emergency-heat" // emergency heat = auxHeatOnly
|
state "auxheatonly", action:"switchMode", icon: "st.thermostat.emergency-heat"
|
||||||
state "updating", label:"Working", icon: "st.secondary.secondary"
|
state "updating", label:"Working", icon: "st.secondary.secondary"
|
||||||
}
|
}
|
||||||
standardTile("fanMode", "device.thermostatFanMode", inactiveLabel: false, decoration: "flat") {
|
standardTile("fanMode", "device.thermostatFanMode", inactiveLabel: false, decoration: "flat") {
|
||||||
@@ -156,47 +156,49 @@ void poll() {
|
|||||||
def generateEvent(Map results) {
|
def generateEvent(Map results) {
|
||||||
log.debug "parsing data $results"
|
log.debug "parsing data $results"
|
||||||
if(results) {
|
if(results) {
|
||||||
results.each { name, value ->
|
|
||||||
|
|
||||||
def linkText = getLinkText(device)
|
def linkText = getLinkText(device)
|
||||||
def isChange = false
|
def supportedThermostatModes = []
|
||||||
def isDisplayed = true
|
def thermostatMode = null
|
||||||
|
|
||||||
|
results.each { name, value ->
|
||||||
def event = [name: name, linkText: linkText, descriptionText: getThermostatDescriptionText(name, value, linkText),
|
def event = [name: name, linkText: linkText, descriptionText: getThermostatDescriptionText(name, value, linkText),
|
||||||
handlerName: name]
|
handlerName: name]
|
||||||
|
|
||||||
if (name=="temperature" || name=="heatingSetpoint" || name=="coolingSetpoint" ) {
|
if (name=="temperature" || name=="heatingSetpoint" || name=="coolingSetpoint" ) {
|
||||||
def sendValue = location.temperatureScale == "C"? roundC(convertFtoC(value.toDouble())) : value.toInteger()
|
def sendValue = location.temperatureScale == "C"? roundC(convertFtoC(value.toDouble())) : value.toInteger()
|
||||||
isChange = isTemperatureStateChange(device, name, value.toString())
|
event << [value: sendValue, unit: temperatureScale]
|
||||||
isDisplayed = isChange
|
|
||||||
event << [value: sendValue, unit: temperatureScale, isStateChange: isChange, displayed: isDisplayed]
|
|
||||||
} else if (name=="maxCoolingSetpoint" || name=="minCoolingSetpoint" || name=="maxHeatingSetpoint" || name=="minHeatingSetpoint") {
|
} else if (name=="maxCoolingSetpoint" || name=="minCoolingSetpoint" || name=="maxHeatingSetpoint" || name=="minHeatingSetpoint") {
|
||||||
def sendValue = location.temperatureScale == "C"? roundC(convertFtoC(value.toDouble())) : value.toInteger()
|
def sendValue = location.temperatureScale == "C"? roundC(convertFtoC(value.toDouble())) : value.toInteger()
|
||||||
event << [value: sendValue, unit: temperatureScale, displayed: false]
|
event << [value: sendValue, unit: temperatureScale, displayed: false]
|
||||||
} else if (name=="heatMode" || name=="coolMode" || name=="autoMode" || name=="auxHeatMode"){
|
} else if (name=="heatMode" || name=="coolMode" || name=="autoMode" || name=="auxHeatMode"){
|
||||||
isChange = isStateChange(device, name, value.toString())
|
if (value == true) {
|
||||||
event << [value: value.toString(), isStateChange: isChange, displayed: false]
|
supportedThermostatModes << ((name == "auxHeatMode") ? "auxheatonly" : name - "Mode")
|
||||||
|
}
|
||||||
|
return // as we don't want to send this event here, proceed to next name/value pair
|
||||||
} else if (name=="thermostatFanMode"){
|
} else if (name=="thermostatFanMode"){
|
||||||
isChange = isStateChange(device, name, value.toString())
|
sendEvent(name: "supportedThermostatFanModes", value: fanModes(), displayed: false)
|
||||||
event << [value: value.toString(), isStateChange: isChange, displayed: false]
|
event << [value: value.toString(), data:[supportedThermostatFanModes: fanModes()]]
|
||||||
} else if (name=="humidity") {
|
} else if (name=="humidity") {
|
||||||
isChange = isStateChange(device, name, value.toString())
|
event << [value: value.toString(), displayed: false, unit: "%"]
|
||||||
event << [value: value.toString(), isStateChange: isChange, displayed: false, unit: "%"]
|
|
||||||
} else if (name == "deviceAlive") {
|
} else if (name == "deviceAlive") {
|
||||||
isChange = isStateChange(device, name, value.toString())
|
|
||||||
event['isStateChange'] = isChange
|
|
||||||
event['displayed'] = false
|
event['displayed'] = false
|
||||||
} else if (name == "thermostatMode") {
|
} else if (name == "thermostatMode") {
|
||||||
def mode = value.toString()
|
thermostatMode = value.toLowerCase()
|
||||||
mode = (mode == "auxHeatOnly") ? "emergency heat" : mode
|
return // as we don't want to send this event here, proceed to next name/value pair
|
||||||
isChange = isStateChange(device, name, mode)
|
|
||||||
event << [value: mode, isStateChange: isChange, displayed: isDisplayed]
|
|
||||||
} else {
|
} else {
|
||||||
isChange = isStateChange(device, name, value.toString())
|
event << [value: value.toString()]
|
||||||
isDisplayed = isChange
|
|
||||||
event << [value: value.toString(), isStateChange: isChange, displayed: isDisplayed]
|
|
||||||
}
|
}
|
||||||
sendEvent(event)
|
sendEvent(event)
|
||||||
}
|
}
|
||||||
|
if (state.supportedThermostatModes != supportedThermostatModes) {
|
||||||
|
state.supportedThermostatModes = supportedThermostatModes
|
||||||
|
sendEvent(name: "supportedThermostatModes", value: supportedThermostatModes, displayed: false)
|
||||||
|
}
|
||||||
|
if (thermostatMode) {
|
||||||
|
sendEvent(name: "thermostatMode", value: thermostatMode, data:[supportedThermostatModes:state.supportedThermostatModes], linkText: linkText,
|
||||||
|
descriptionText: getThermostatDescriptionText("thermostatMode", thermostatMode, linkText), handlerName: "thermostatMode")
|
||||||
|
}
|
||||||
generateSetpointEvent ()
|
generateSetpointEvent ()
|
||||||
generateStatusEvent ()
|
generateStatusEvent ()
|
||||||
}
|
}
|
||||||
@@ -322,15 +324,7 @@ void resumeProgram() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
def modes() {
|
def modes() {
|
||||||
if (state.modes) {
|
return state.supportedThermostatModes
|
||||||
log.debug "Modes = ${state.modes}"
|
|
||||||
return state.modes
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
state.modes = parent.availableModes(this)
|
|
||||||
log.debug "Modes = ${state.modes}"
|
|
||||||
return state.modes
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def fanModes() {
|
def fanModes() {
|
||||||
@@ -413,11 +407,13 @@ def setThermostatFanMode(String mode) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
def generateModeEvent(mode) {
|
def generateModeEvent(mode) {
|
||||||
sendEvent(name: "thermostatMode", value: mode, descriptionText: "$device.displayName is in ${mode} mode", displayed: true)
|
sendEvent(name: "thermostatMode", value: mode, data:[supportedThermostatModes: state.supportedThermostatModes],
|
||||||
|
descriptionText: "$device.displayName is in ${mode} mode")
|
||||||
}
|
}
|
||||||
|
|
||||||
def generateFanModeEvent(fanMode) {
|
def generateFanModeEvent(fanMode) {
|
||||||
sendEvent(name: "thermostatFanMode", value: fanMode, descriptionText: "$device.displayName fan is in ${fanMode} mode", displayed: true)
|
sendEvent(name: "thermostatFanMode", value: fanMode, data:[supportedThermostatFanModes: fanModes()],
|
||||||
|
descriptionText: "$device.displayName fan is in ${fanMode} mode")
|
||||||
}
|
}
|
||||||
|
|
||||||
def generateOperatingStateEvent(operatingState) {
|
def generateOperatingStateEvent(operatingState) {
|
||||||
@@ -453,14 +449,14 @@ def heat() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
def emergencyHeat() {
|
def emergencyHeat() {
|
||||||
auxHeatOnly()
|
auxheatonly()
|
||||||
}
|
}
|
||||||
|
|
||||||
def auxHeatOnly() {
|
def auxheatonly() {
|
||||||
log.debug "auxHeatOnly = emergency heat"
|
log.debug "auxheatonly()"
|
||||||
def deviceId = device.deviceNetworkId.split(/\./).last()
|
def deviceId = device.deviceNetworkId.split(/\./).last()
|
||||||
if (parent.setMode ("auxHeatOnly", deviceId))
|
if (parent.setMode ("auxHeatOnly", deviceId))
|
||||||
generateModeEvent("emergency heat") // emergency heat = auxHeatOnly
|
generateModeEvent("auxheatonly")
|
||||||
else {
|
else {
|
||||||
log.debug "Error setting new mode."
|
log.debug "Error setting new mode."
|
||||||
def currentMode = device.currentState("thermostatMode")?.value
|
def currentMode = device.currentState("thermostatMode")?.value
|
||||||
@@ -593,7 +589,7 @@ def generateSetpointEvent() {
|
|||||||
} else if (mode == "off") {
|
} else if (mode == "off") {
|
||||||
sendEvent("name":"thermostatSetpoint", "value":averageSetpoint, "unit":location.temperatureScale)
|
sendEvent("name":"thermostatSetpoint", "value":averageSetpoint, "unit":location.temperatureScale)
|
||||||
sendEvent("name":"displayThermostatSetpoint", "value":"Off", displayed: false)
|
sendEvent("name":"displayThermostatSetpoint", "value":"Off", displayed: false)
|
||||||
} else if (mode == "emergency heat") { // emergency heat = auxHeatOnly
|
} else if (mode == "auxheatonly") {
|
||||||
sendEvent("name":"thermostatSetpoint", "value":heatingSetpoint, "unit":location.temperatureScale)
|
sendEvent("name":"thermostatSetpoint", "value":heatingSetpoint, "unit":location.temperatureScale)
|
||||||
sendEvent("name":"displayThermostatSetpoint", "value":heatingSetpoint, "unit":location.temperatureScale, displayed: false)
|
sendEvent("name":"displayThermostatSetpoint", "value":heatingSetpoint, "unit":location.temperatureScale, displayed: false)
|
||||||
}
|
}
|
||||||
@@ -632,7 +628,7 @@ void raiseSetpoint() {
|
|||||||
targetvalue = thermostatSetpoint ? thermostatSetpoint : 0
|
targetvalue = thermostatSetpoint ? thermostatSetpoint : 0
|
||||||
targetvalue = location.temperatureScale == "F"? targetvalue + 1 : targetvalue + 0.5
|
targetvalue = location.temperatureScale == "F"? targetvalue + 1 : targetvalue + 0.5
|
||||||
|
|
||||||
if ((mode == "heat" || mode == "emergency heat") && targetvalue > maxHeatingSetpoint) { // emergency heat = auxHeatOnly
|
if ((mode == "heat" || mode == "auxheatonly") && targetvalue > maxHeatingSetpoint) {
|
||||||
targetvalue = maxHeatingSetpoint
|
targetvalue = maxHeatingSetpoint
|
||||||
} else if (mode == "cool" && targetvalue > maxCoolingSetpoint) {
|
} else if (mode == "cool" && targetvalue > maxCoolingSetpoint) {
|
||||||
targetvalue = maxCoolingSetpoint
|
targetvalue = maxCoolingSetpoint
|
||||||
@@ -678,7 +674,7 @@ void lowerSetpoint() {
|
|||||||
targetvalue = thermostatSetpoint ? thermostatSetpoint : 0
|
targetvalue = thermostatSetpoint ? thermostatSetpoint : 0
|
||||||
targetvalue = location.temperatureScale == "F"? targetvalue - 1 : targetvalue - 0.5
|
targetvalue = location.temperatureScale == "F"? targetvalue - 1 : targetvalue - 0.5
|
||||||
|
|
||||||
if ((mode == "heat" || mode == "emergency heat") && targetvalue < minHeatingSetpoint) { // emergency heat = auxHeatOnly
|
if ((mode == "heat" || mode == "auxheatonly") && targetvalue < minHeatingSetpoint) {
|
||||||
targetvalue = minHeatingSetpoint
|
targetvalue = minHeatingSetpoint
|
||||||
} else if (mode == "cool" && targetvalue < minCoolingSetpoint) {
|
} else if (mode == "cool" && targetvalue < minCoolingSetpoint) {
|
||||||
targetvalue = minCoolingSetpoint
|
targetvalue = minCoolingSetpoint
|
||||||
@@ -719,7 +715,7 @@ void alterSetpoint(temp) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//step1: check thermostatMode, enforce limits before sending request to cloud
|
//step1: check thermostatMode, enforce limits before sending request to cloud
|
||||||
if (mode == "heat" || mode == "emergency heat"){ // emergency heat = auxHeatOnly
|
if (mode == "heat" || mode == "auxheatonly"){
|
||||||
if (temp.value > coolingSetpoint){
|
if (temp.value > coolingSetpoint){
|
||||||
targetHeatingSetpoint = temp.value
|
targetHeatingSetpoint = temp.value
|
||||||
targetCoolingSetpoint = temp.value
|
targetCoolingSetpoint = temp.value
|
||||||
@@ -754,7 +750,7 @@ void alterSetpoint(temp) {
|
|||||||
log.debug "alterSetpoint in mode $mode succeed change setpoint to= ${temp.value}"
|
log.debug "alterSetpoint in mode $mode succeed change setpoint to= ${temp.value}"
|
||||||
} else {
|
} else {
|
||||||
log.error "Error alterSetpoint()"
|
log.error "Error alterSetpoint()"
|
||||||
if (mode == "heat" || mode == "emergency heat"){ // emergency heat = auxHeatOnly
|
if (mode == "heat" || mode == "auxheatonly"){
|
||||||
sendEvent("name": "thermostatSetpoint", "value": heatingSetpoint.toString(), displayed: false)
|
sendEvent("name": "thermostatSetpoint", "value": heatingSetpoint.toString(), displayed: false)
|
||||||
sendEvent("name": "displayThermostatSetpoint", "value": heatingSetpoint.toString(), displayed: false)
|
sendEvent("name": "displayThermostatSetpoint", "value": heatingSetpoint.toString(), displayed: false)
|
||||||
} else if (mode == "cool") {
|
} else if (mode == "cool") {
|
||||||
@@ -783,7 +779,7 @@ def generateStatusEvent() {
|
|||||||
log.debug "Cooling set point = ${coolingSetpoint}"
|
log.debug "Cooling set point = ${coolingSetpoint}"
|
||||||
log.debug "HVAC Mode = ${mode}"
|
log.debug "HVAC Mode = ${mode}"
|
||||||
|
|
||||||
if (mode == "heat") {
|
if (mode == "heat" || mode == "auxheatonly") {
|
||||||
if (temperature >= heatingSetpoint) {
|
if (temperature >= heatingSetpoint) {
|
||||||
statusText = "Right Now: Idle"
|
statusText = "Right Now: Idle"
|
||||||
} else {
|
} else {
|
||||||
@@ -806,8 +802,6 @@ def generateStatusEvent() {
|
|||||||
}
|
}
|
||||||
} else if (mode == "off") {
|
} else if (mode == "off") {
|
||||||
statusText = "Right Now: Off"
|
statusText = "Right Now: Off"
|
||||||
} else if (mode == "emergency heat") { // emergency heat = auxHeatOnly
|
|
||||||
statusText = "Emergency Heat"
|
|
||||||
} else {
|
} else {
|
||||||
statusText = "?"
|
statusText = "?"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -300,15 +300,21 @@ def setColor(value) {
|
|||||||
value.hex = "#${hex(value.red)}${hex(value.green)}${hex(value.blue)}"
|
value.hex = "#${hex(value.red)}${hex(value.green)}${hex(value.blue)}"
|
||||||
}
|
}
|
||||||
|
|
||||||
sendEvent(name: "hue", value: value.hue, displayed: false)
|
if(value.hue) {
|
||||||
sendEvent(name: "saturation", value: value.saturation, displayed: false)
|
sendEvent(name: "hue", value: value.hue, displayed: false)
|
||||||
sendEvent(name: "color", value: value.hex, displayed: false)
|
}
|
||||||
if (value.level) {
|
if(value.saturation) {
|
||||||
sendEvent(name: "level", value: value.level)
|
sendEvent(name: "saturation", value: value.saturation, displayed: false)
|
||||||
}
|
}
|
||||||
if (value.switch) {
|
if(value.hex?.trim()) {
|
||||||
sendEvent(name: "switch", value: value.switch)
|
sendEvent(name: "color", value: value.hex, displayed: false)
|
||||||
}
|
}
|
||||||
|
if (value.level) {
|
||||||
|
sendEvent(name: "level", value: value.level)
|
||||||
|
}
|
||||||
|
if (value.switch?.trim()) {
|
||||||
|
sendEvent(name: "switch", value: value.switch)
|
||||||
|
}
|
||||||
|
|
||||||
sendRGB(value.rh, value.gh, value.bh)
|
sendRGB(value.rh, value.gh, value.bh)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ metadata {
|
|||||||
capability "Refresh"
|
capability "Refresh"
|
||||||
capability "Sensor"
|
capability "Sensor"
|
||||||
capability "Health Check"
|
capability "Health Check"
|
||||||
capability "Light"
|
|
||||||
capability "Outlet"
|
capability "Outlet"
|
||||||
|
|
||||||
fingerprint profileId: "0104", inClusters: "0000,0003,0004,0005,0006,0B04,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3200", deviceJoinName: "Outlet"
|
fingerprint profileId: "0104", inClusters: "0000,0003,0004,0005,0006,0B04,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3200", deviceJoinName: "Outlet"
|
||||||
|
|||||||
2
devicetypes/smartthings/zigbee-button.src/.st-ignore
Normal file
2
devicetypes/smartthings/zigbee-button.src/.st-ignore
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.st-ignore
|
||||||
|
README.md
|
||||||
43
devicetypes/smartthings/zigbee-button.src/README.md
Normal file
43
devicetypes/smartthings/zigbee-button.src/README.md
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
# ZigBee Button
|
||||||
|
|
||||||
|
Cloud Execution
|
||||||
|
|
||||||
|
Works with:
|
||||||
|
|
||||||
|
* [OSRAM LIGHTIFY Dimming Switch](https://support.smartthings.com/hc/en-us/articles/115000236823-SYLVANIA-Dimming-Switch)
|
||||||
|
* [Iris Smart Button](https://support.smartthings.com/hc/en-us/articles/115000190186-Iris-Smart-Button)
|
||||||
|
* [Iris KeyFob](https://support.smartthings.com/hc/en-us/articles/217409686-Iris-Smart-Fob)
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
|
||||||
|
* [Capabilities](#capabilities)
|
||||||
|
* [Health](#device-health)
|
||||||
|
* [Troubleshooting](#troubleshooting)
|
||||||
|
|
||||||
|
## Capabilities
|
||||||
|
|
||||||
|
* **Actuator** - It represents that a device has commands.
|
||||||
|
* **Battery** - It defines that the device has a battery
|
||||||
|
* **Button** - It defines that a device has one or more buttons
|
||||||
|
* **Holdable Button** - It defines that a device has one or more holdable buttons
|
||||||
|
* **Configuration** - _configure()_ command called when device is installed or device preferences updated
|
||||||
|
* **Refresh** - _refresh()_ command for status updates
|
||||||
|
* **Sensor** - it represents that a Device has attributes.
|
||||||
|
* **Health Check** - indicates ability to get device health notifications
|
||||||
|
|
||||||
|
|
||||||
|
## Device Health
|
||||||
|
|
||||||
|
SmartThings platform will ping the device after `checkInterval` seconds of inactivity in last attempt to reach the device before marking it `OFFLINE`
|
||||||
|
|
||||||
|
* __722min__ checkInterval
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
If the device doesn't pair when trying from the SmartThings mobile app, it is possible that the device is out of range.
|
||||||
|
Pairing needs to be tried again by placing the device closer to the hub.
|
||||||
|
It may also happen that you need to reset the device.
|
||||||
|
Instructions related to pairing, resetting and removing the device from SmartThings can be found in the following link:
|
||||||
|
* [OSRAM LIGHTIFY Dimming Switch Troubleshooting Tips](https://support.smartthings.com/hc/en-us/articles/115000236823-SYLVANIA-Dimming-Switch)
|
||||||
|
* [Iris Smart Button Troubleshooting Tips](https://support.smartthings.com/hc/en-us/articles/115000190186-Iris-Smart-Button)
|
||||||
|
* [Iris KeyFob Troubleshooting Tips](https://support.smartthings.com/hc/en-us/articles/217409686-Iris-Smart-Fob)
|
||||||
@@ -24,6 +24,7 @@ metadata {
|
|||||||
capability "Configuration"
|
capability "Configuration"
|
||||||
capability "Refresh"
|
capability "Refresh"
|
||||||
capability "Sensor"
|
capability "Sensor"
|
||||||
|
capability "Health Check"
|
||||||
|
|
||||||
command "enrollResponse"
|
command "enrollResponse"
|
||||||
|
|
||||||
@@ -182,6 +183,13 @@ private Map parseNonIasButtonMessage(Map descMap){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PING is used by Device-Watch in attempt to reach the Device
|
||||||
|
* */
|
||||||
|
def ping() {
|
||||||
|
refresh()
|
||||||
|
}
|
||||||
|
|
||||||
def refresh() {
|
def refresh() {
|
||||||
log.debug "Refreshing Battery"
|
log.debug "Refreshing Battery"
|
||||||
|
|
||||||
@@ -190,6 +198,8 @@ def refresh() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
def configure() {
|
def configure() {
|
||||||
|
// Device-Watch allows 2 check-in misses from device (plus 2 mins lag time)
|
||||||
|
sendEvent(name: "checkInterval", value: 2 * 6 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zigbee", hubHardwareId: device.hub.hardwareID])
|
||||||
log.debug "Configuring Reporting, IAS CIE, and Bindings."
|
log.debug "Configuring Reporting, IAS CIE, and Bindings."
|
||||||
def cmds = []
|
def cmds = []
|
||||||
if (device.getDataValue("model") == "3450-L") {
|
if (device.getDataValue("model") == "3450-L") {
|
||||||
|
|||||||
Reference in New Issue
Block a user