-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTempSensorSettable.groovy
More file actions
102 lines (88 loc) · 3.09 KB
/
TempSensorSettable.groovy
File metadata and controls
102 lines (88 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
* Copyright 2015 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: "Temperature Sensor", namespace: "smartthings", author: "SmartThings") {
capability "Temperature Measurement"
capability "Relative Humidity Measurement"
capability "Sensor"
command "setTemperature"
command "setHumidity"
fingerprint profileId: "0104", deviceId: "0302", inClusters: "0000,0001,0003,0009,0402,0405"
}
// simulator metadata
simulator {
for (int i = 0; i <= 100; i += 10) {
status "${i}F": "temperature: $i F"
}
for (int i = 0; i <= 100; i += 10) {
status "${i}%": "humidity: ${i}%"
}
}
// UI tile definitions
tiles {
valueTile("temperature", "device.temperature", width: 2, height: 2) {
state("temperature", label:'${currentValue}°',
backgroundColors:[
[value: 31, color: "#153591"],
[value: 44, color: "#1e9cbb"],
[value: 59, color: "#90d2a7"],
[value: 74, color: "#44b621"],
[value: 84, color: "#f1d801"],
[value: 95, color: "#d04e00"],
[value: 96, color: "#bc2323"]
]
)
}
valueTile("humidity", "device.humidity") {
state "humidity", label:'${currentValue}%', unit:""
}
main(["temperature", "humidity"])
details(["temperature", "humidity"])
}
}
// add SET methods
def setTemperature(Integer v) {
sendEvent(displayed: true, isStateChange: true, name: "temperature", value: v, descriptionText: "$device.displayName temperature is $v")
}
def setHumidity(Double v) {
sendEvent(displayed: true, isStateChange: true, name: "humidity", value: v, descriptionText: "$device.displayName humidity is $v")
}
// Parse incoming device messages to generate events
def parse(String description) {
def name = parseName(description)
def value = parseValue(description)
def unit = name == "temperature" ? getTemperatureScale() : (name == "humidity" ? "%" : null)
def result = createEvent(name: name, value: value, unit: unit)
log.debug "Parse returned ${result?.descriptionText}"
return result
}
private String parseName(String description) {
if (description?.startsWith("temperature: ")) {
return "temperature"
} else if (description?.startsWith("humidity: ")) {
return "humidity"
}
null
}
private String parseValue(String description) {
if (description?.startsWith("temperature: ")) {
return zigbee.parseHATemperatureValue(description, "temperature: ", getTemperatureScale())
} else if (description?.startsWith("humidity: ")) {
def pct = (description - "humidity: " - "%").trim()
if (pct.isNumber()) {
return Math.round(new BigDecimal(pct)).toString()
}
}
null
}