-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathLight-Alert-SmartApp.groovy
More file actions
405 lines (373 loc) · 11.5 KB
/
Light-Alert-SmartApp.groovy
File metadata and controls
405 lines (373 loc) · 11.5 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
/**
* Smart Bulb Notifier/Flasher
*
* Copyright 2015 Scott Gibson
*
* 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.
*
* Many thanks to Eric Roberts for his virtual switch creator, which served as the template for creating child switch devices!
*
*/
definition(
name: "Smart Bulb Alert (Blink/Flash)",
namespace: "sticks18",
author: "Scott Gibson",
description: "Creates a virtual switch button that when turned on will trigger selected smart bulbs to blink or flash",
category: "My Apps",
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png",
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience%402x.png"
)
preferences {
page(name: "basicInfo")
page(name: "configureBulbs")
}
def basicInfo(){
dynamicPage(name: "basicInfo", title: "First, name your trigger and select smart bulb types", nextPage: "configureBulbs", uninstall: true){
section("Create Virtual Momentary Button as Trigger") {
input "switchLabel", "text", title: "Switch Button Label", multiple: false, required: true
}
section("Choose your Smart Bulbs") {
paragraph "This SmartApp will work with most zigbee bulbs by directly calling the Identify function built into the hardware. This function is generally run when you first pair a bulb to the hub to let you know it was successful. Different bulbs have different capabilities and/or endpoints to address, so they must be selected separately in this SmartApp. If expanded functionality exists for a particular bulb type, you will be given additional options to select. Caveats: Non-Hue bulbs connected to the Hue Bridge, such as GE Link or Cree Connected, will not work because the Hue API is not designed for them.",
title: "How to select your bulbs...", required: true
input "geLinks", "capability.switch level", title: "Select GE Link Bulbs", required: false, multiple: true
//input "creeCons", "capability.switch level", title: "Select Cree Connected Bulbs", required: false, multiple: true
//input "hueHubs", "capability.switch level", title: "Select Hue Bulbs connected to Hue Hub", required: false, multiple: true
//input "hueDirs", "capability.switch level", title: "Select Hue Bulbs directly connected to ST Hub", required: false, multiple: true
//input "osramLs", "capability.switch level", title: "Select Osram Lightify Bulbs", required: false, multiple: true
}
}
}
def configureBulbs(){
dynamicPage(name: "configureBulbs", title: "Additional Configuration Options by Bulb Type", install: true, uninstall: true) {
section(title: "Auto-off for bulbs directly connected to SmartThings Hub") {
input "autoOff", "bool", title: "Automatically stop the alert", required: false, submitOnChange: true
input "offDelay", "number", title: "Turn off alert after X seconds (default = 5, max = 10)", required: false, submitOnChange: true
}
/*section(title: "Options for Hue Bulbs connected to Hue Bridge", hidden: hideHueHubBulbs(), hideable: true) {
input "hBlink", "enum", title: "Select Blink for single flash or Breathe for 15 seconds continuous (default = Breathe)", multiple: false, required: false,
options: ["Blink", "Breathe"]
}
section(title: "Options for Hue Bulbs connected directly to SmartThings Hub", hidden: hideHueDirBulbs(), hideable: true) {
input "hdStyle", "enum", title: "Select alert style: Normal = Bulb will blink until stopped via auto-off or trigger, Blink = Single flash, Breathe = Mult Flash for 15 seconds, Okay = Bulb turn green for 2 seconds",
multiple: false, required: false, options: ["Normal", "Blink", "Breathe", "Okay"]
}
section(title: "Options for Osram Lightify Bulbs", hidden: hideOsramBulbs(), hideable: true) {
input "osStyle", "enum", title: "Select alert style: Normal = Bulb will blink until stopped via auto-off or trigger",
multiple: false, required: false, options: ["Normal"]
}*/
}
}
def installed() {
log.debug "Installed with settings: ${settings}"
initialize()
}
def updated() {
log.debug "Updated with settings: ${settings}"
unsubscribe()
initialize()
}
def initialize() {
state.autoOff = offDelay
// state.hueHubOption = getHueHubOption()
// state.hueDirOption = getHueDirOption()
// state.osramOption = getOsramOption()
// state.onlyHueHub = getHueHubOnly()
def deviceId = app.id + "SimulatedSwitch"
log.debug(deviceId)
def existing = getChildDevice(deviceId)
log.debug existing
if (!existing) {
log.debug "Add child"
def childDevice = addChildDevice("sticks18", "Smart Bulb Alert Switch", deviceId, null, [label: switchLabel])
}
}
def uninstalled() {
removeChildDevices(getChildDevices())
}
private removeChildDevices(delete) {
delete.each {
deleteChildDevice(it.deviceNetworkId)
}
}
/* private getOffDelay() {
def result = 5
log.debug "autoOff is ${autoOff}"
if (autoOff) {
result = 5
log.debug "offDelay is ${offDelay}"
if(offDelay) {
def offSec = Math.Min(offDelay, 10)
offSec = Math.Max(offSec, 1)
result = offSec
}
}
log.debug "off delay: ${result}"
return result
}
private getHueDirOption() {
def result = null
log.debug hueDirs
if (hueDirs) {
switch(hdStyle) {
case "Normal":
result = ""
break
case "Blink":
result = "00"
break
case "Breathe":
result = "01"
break
case "Okay":
result = "02"
break
default:
result = ""
break
}
}
log.debug "hue dir option: ${result}"
return result
}
private getHueHubOnly() {
(creeCons || geLinks || osramLs || hueDirs) ? false : true
}
private getHueHubOption() {
def result = null
if (hueHubs) {
switch(hBlink) {
case "Blink":
result = "select"
break
case "Breathe":
result = "lselect"
break
default:
result = "lselect"
break
}
}
log.debug "hue hub option: ${result}"
return result
}
private getOsramOption() {
def result = null
if (osramLs) {
switch(osStyle) {
case "Normal":
result = ""
break
case "Blink":
result = "00"
break
case "Breathe":
result = "01"
break
case "Okay":
result = "02"
break
default:
result = ""
break
}
}
log.debug "osram option: ${result}"
return result
}
*/
private hideHueHubBulbs() {
(hueHubs) ? false : true
}
private hideHueDirBulbs() {
(hueDirs) ? false : true
}
private hideOsramBulbs() {
(osramLs) ? false : true
}
private hex(value, width=4) {
def s = new BigInteger(Math.round(value).toString()).toString(16)
while (s.size() < width) {
s = "0" + s
}
s
}
private Integer convertHexToInt(hex) {
Integer.parseInt(hex,16)
}
private String swapEndianHex(String hex) {
reverseArray(hex.decodeHex()).encodeHex()
}
private byte[] reverseArray(byte[] array) {
int i = 0;
int j = array.length - 1;
byte tmp;
while (j > i) {
tmp = array[j];
array[j] = array[i];
array[i] = tmp;
j--;
i++;
}
return array
}
// Child device methods after this point. Instead of subscribing to child, have child directly call parent
def on(childDevice) {
log.debug "Start alert"
if(state.autoOff != null) {
log.debug "Only alert for ${state.autoOff} seconds"
if(geLinks != null) {
geLinks.each { bulb ->
// bulb.setLevel(99, 1800)
bulb.alert(state.autoOff)
// childDevice.attWrite(bulb.deviceNetworkId, 1, 3, 0, "0x21", state.autoOff)
// childDevice.zigbeeCmd(bulb.deviceNetworkId, 1, 3, 0, "")
}
}
/*if(creeCons != null) {
creeCons.each { bulb ->
childDevice.attWrite(bulb.deviceNetworkId, "10", "3", "0", "0x21", state.autoOff)
}
}
if(state.hueDirOption != null) {
if(state.hueDirOption == "") {
hueDirs.each { bulb ->
childDevice.attWrite(bulb.deviceNetworkId, "0B", "3", "0", "0x21", state.autoOff)
}
}
else {
hueDirs.each { bulb ->
def payload = state.hueDirOption + " 00"
childDevice.zigbeeCmd(bulb.deviceNetworkId, "0B", "3", "0x40", payload)
}
}
}
if(state.osramOption != null) {
if(state.osramOption == "") {
osramLs.each { bulb ->
childDevice.attWrite(bulb.deviceNetworkId, "03", "3", "0", "0x21", state.autoOff)
}
}
else {
osramLs.each { bulb ->
def payload = state.osramOption + " 00"
childDevice.zigbeeCmd(bulb.deviceNetworkId, "03", "3", "0x40", payload)
}
}
} */
childDevice.justOff()
} /*
else {
log.debug "Starting continous alert"
if(geLinks != null) {
geLinks.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "1", "3", "0", "")
}
}
if(creeCons != null) {
creeCons.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "10", "3", "0", "")
}
}
if(state.hueDirOption != null) {
if(state.hueDirOption == "") {
hueDirs.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "0B", "3", "0", "")
}
}
else {
hueDirs.each { bulb ->
def payload = state.hueDirOption + " 00"
childDevice.zigbeeCmd(bulb.deviceNetworkId, "0B", "3", "0x40", payload)
}
}
}
if(state.osramOption != null) {
if(state.osramOption == "") {
osramLs.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "03", "3", "0", "")
}
}
else {
osramLs.each { bulb ->
def payload = state.osramOption + " 00"
childDevice.zigbeeCmd(bulb.deviceNetworkId, "03", "3", "0x40", payload)
}
}
}
}
if(state.hueHubOption != null) {
log.debug "Send planned alert to Hue Bulbs via Hue Bridge"
hueHubs.each { bulb ->
def hue = bulb.currentValue("hue")
def sat = bulb.currentValue("saturation")
def alert = state.hueHubOption
def value = [hue: hue, saturation: sat, alert: alert]
bulb.setColor(value)
}
if(state.hueHubOnly) { childDevice.justOff() }
}*/
}
def off(childDevice) {
log.debug "Stop Alert" /*
if(state.autoOff != null) {
childDevice.justOff()
}
else {
log.debug "Stopping continous alert"
if(geLinks != null) {
geLinks.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "1", "3", "0", "")
}
}
if(creeCons != null) {
creeCons.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "10", "3", "0", "")
}
}
if(state.hueDirOption != null) {
if(state.hueDirOption == "") {
hueDirs.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "0B", "3", "0", "")
}
}
}
if(state.osramOption != null) {
if(state.osramOption == "") {
osramLs.each { bulb ->
childDevice.zigbeeCmd(bulb.deviceNetworkId, "03", "3", "0", "")
}
}
}
}
*/
}
def allOff(childDevice) {
log.debug "Stopping alerts" /*
if(geLinks != null) {
geLinks.each { bulb ->
childDevice.attWrite(bulb.deviceNetworkId, "1", "3", "0", "0x21", "0100")
}
}
if(creeCons != null) {
creeCons.each { bulb ->
childDevice.attWrite(bulb.deviceNetworkId, "10", "3", "0", "0x21", "0100")
}
}
if(hueDirs != null) {
hueDirs.each { bulb ->
childDevice.attWrite(bulb.deviceNetworkId, "0B", "3", "0", "0x21", "0100")
}
}
if(osramLs != null) {
osramLs.each { bulb ->
childDevice.attWrite(bulb.deviceNetworkId, "03", "3", "0", "0x21", "0100")
}
} */
}