forked from castlecole/customdevices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VirtualPresence.groovy
126 lines (51 loc) · 1.97 KB
/
VirtualPresence.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
//Release History
// 1.0 May 20, 2016
// Initial Release
metadata {
definition (name: "Virtual Presence Plus", namespace: "castlecole", author: "Sean Cole") {
capability "Switch"
capability "Refresh"
capability "Presence Sensor"
capability "Sensor"
command "arrived"
command "departed"
}
// simulator metadata
simulator {
}
// UI tile definitions
tiles {
standardTile("button", "device.switch", width: 2, height: 2, canChangeIcon: false, canChangeBackground: true) {
state "off", label: 'Away', action: "switch.on", icon:"https://raw.githubusercontent.com/castlecole/customdevices/master/presence-no-icon.png", backgroundColor: "#ffffff", nextState: "on"
state "on", label: 'Present', action: "switch.off", icon:"https://raw.githubusercontent.com/castlecole/customdevices/master/presence-icon.png", backgroundColor: "#53a7c0", nextState: "off"
}
standardTile("refresh", "device.switch", inactiveLabel: false, decoration: "flat") {
state "default", label:'', action:"refresh.refresh", icon:"https://raw.githubusercontent.com/castlecole/customdevices/master/refresh.png"
}
standardTile("presence", "device.presence", width: 1, height: 1, canChangeBackground: true) {
state("present", labelIcon:"st.presence.tile.mobile-present", backgroundColor:"#53a7c0")
state("not present", labelIcon:"st.presence.tile.mobile-not-present", backgroundColor:"#ffffff")
}
main (["button", "presence"])
details(["button", "presence", "refresh"])
}
}
def parse(String description) {
def pair = description.split(":")
createEvent(name: pair[0].trim(), value: pair[1].trim())
}
// handle commands
def arrived() {
on()
}
def departed() {
off()
}
def on() {
sendEvent(name: "switch", value: "on")
sendEvent(name: "presence", value: "present")
}
def off() {
sendEvent(name: "switch", value: "off")
sendEvent(name: "presence", value: "not present")
}