forked from castlecole/customdevices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PrescenceForced.groovy
137 lines (118 loc) · 3.73 KB
/
PrescenceForced.groovy
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/**
* Forcible Mobile Presence v 1.0
*
* Capabilities:
* Presence Sensor
*
* Author: Original "Mobile Presence" by SmartThings
* Modified by Kevin LaFramboise (krlaframboise)
*
* Changelog:
*
* 1.0 (04/30/2016)
* - Initial Release
*
* 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.
*/
def version() {
return "v2 (20180911)\nForcible Mobile Presence"
}
metadata {
definition (name: "Forcible Mobile Presence", namespace: "castlecole", author: "SmartThings, Kevin LaFramboise") {
capability "Presence Sensor"
capability "Sensor"
command "arrived"
command "departed"
}
simulator {
status "present": "presence: 1"
status "not present": "presence: 0"
}
preferences {
input description: "Version: ${version()}", type: "paragraph", element: "paragraph", title: ""
}
tiles(scale: 2) {
standardTile("presence", "device.presence", width: 4, height: 4, canChangeBackground: true) {
state("present", label: 'Present", Icon:"https://raw.githubusercontent.com/castlecole/customdevices/master/presence-icon.png", backgroundColor:"#53a7c0")
state("not present", label: 'Away', Icon:"https://raw.githubusercontent.com/castlecole/customdevices/master/presence-no-icon.png", backgroundColor:"#ebeef2")
}
standardTile("setArrived", "generic", width: 2, height: 2) {
state "default", label:'Arrive', action:"arrived"
}
standardTile("setDeparted", "generic", width: 2, height: 2) {
state "default", label:'Depart', action:"departed"
}
main "presence"
details(["presence", "setArrived", "setDeparted"])
}
}
def parse(String description) {
def name = parseName(description)
def value = parseValue(description)
def linkText = getLinkText(device)
def descriptionText = parseDescriptionText(linkText, value, description)
def handlerName = getState(value)
def isStateChange = isStateChange(device, name, value)
def results = [
translatable: true,
name: name,
value: value,
unit: null,
linkText: linkText,
descriptionText: descriptionText,
handlerName: handlerName,
isStateChange: isStateChange,
displayed: displayed(description, isStateChange)
]
log.debug "Parse returned ${results.descriptionText}"
return results
}
private String parseName(String description) {
if (description?.startsWith("presence: ")) {
return "presence"
}
null
}
private String parseValue(String description) {
switch(description) {
case "presence: 1": return "present"
case "presence: 0": return "not present"
default: return description
}
}
private parseDescriptionText(String linkText, String value, String description) {
switch(value) {
case "present": return "{{ linkText }} has arrived"
case "not present": return "{{ linkText }} has left"
default: return value
}
}
private getState(String value) {
switch(value) {
case "present": return "arrived"
case "not present": return "left"
default: return value
}
}
def arrived() {
sendForcedEvent("present")
}
def departed() {
sendForcedEvent("not present")
}
private sendForcedEvent(newState) {
def displayState = (newState == "present") ? "Present" : "Not Present"
sendEvent(name: "presence", value: newState, descriptionText: "${device.displayName} was forced to ${displayState}", isStateChange: true)
}