-
Notifications
You must be signed in to change notification settings - Fork 19
/
Shelly-Gas.groovy
559 lines (497 loc) · 18.4 KB
/
Shelly-Gas.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
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
/*
* Shelly Gas Device Handler
*
* Copyright © 2020 Allterco Robotics US
*
* 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.
*
* Hubitat is the Trademark and intellectual Property of Hubitat Inc.
* Shelly is the Trademark and Intellectual Property of Allterco Robotics Ltd
*
*-------------------------------------------------------------------------------------------------------------------
*
* Notes: This devices registers as both a CarbonMonoxideDetector and a CarbonDioxideMeasurement devices for two reasons:
* 1) As a Carbon Monoxide Detector it will allow you to add it to HSM and rules since HE does not support propane or natual gas yet...
* 2) Will give you the PPM reading as a Carbon Dioxide Measurement
*
* Changes:
* 1.0.0 - Initial release
*
*/
import groovy.transform.Field
import groovy.json.*
metadata {
definition (
name: "Shelly Gas",
namespace: "sgrayban",
author: "Scott Grayban",
importUrl: "https://raw.githubusercontent.com/ShellyUSA/Hubitat-Drivers/master/Shelly-Gas.groovy"
)
{
capability "Actuator"
capability "Sensor"
capability "Refresh" // refresh command
capability "Polling"
capability "CarbonMonoxideDetector"
capability "CarbonDioxideMeasurement"
command "selfTest"
command "mute"
command "unmute"
command "setVolume", ["vol"]
command "RebootDevice"
command "UpdateDeviceFW" // ota?update=1
attribute "Volume", "number"
attribute "ppm", "number"
attribute "MAC", "string"
attribute "gas", "string"
attribute "DeviceStatus", "string"
attribute "SelfTestStatus", "string"
attribute "FW_Update_Needed", "string"
attribute "Cloud", "string"
attribute "IP", "string"
attribute "SSID", "string"
attribute "Cloud_Connected", "string"
attribute "WiFiSignal", "string"
attribute "LastRefresh", "string"
attribute "DeviceName", "string"
attribute "NTPServer", "string"
}
preferences {
def refreshRate = [:]
refreshRate << ["1 min" : "Refresh every minute"]
refreshRate << ["5 min" : "Refresh every 5 minutes"]
refreshRate << ["15 min" : "Refresh every 15 minutes"]
refreshRate << ["30 min" : "Refresh every 30 minutes"]
input("ip", "string", title:"Shelly IP Address:", description:"EG; 192.168.0.100", defaultValue:"" , required: true, displayDuringSetup: true)
input name: "username", type: "text", title: "Username:", description: "(blank if none)", required: false
input name: "password", type: "password", title: "Password:", description: "(blank if none)", required: false
input name: "ntp_server", type: "text", title: "NTP time server:", description: "E.G. time.google.com or 192.168.0.59", defaultValue: "time.google.com", required: true
input name: "devicename", type: "text", title: "Give your device a name:", description: "EG; Location/Room<br>NO SPACES in name", required: false
input ("refresh_Rate", "enum", title: "Device Refresh Rate", options: refreshRate, defaultValue: "30 min")
input "locale", "enum", title: "Choose refresh date format", required: true, defaultValue: true, //RK
options: [US:"US MM/DD/YYYY",UK:"UK DD/MM/YYYY"] //RK
input name: "debugOutput", type: "bool", title: "Enable debug logging?", defaultValue: true
input name: "txtEnable", type: "bool", title: "Enable descriptionText logging", defaultValue: true //RK
input name: "debugParse", type: "bool", title: "Enable JSON parse logging?", defaultValue: false
input name: "Shellyinfo", type: "text", title: "<center><font color=blue>Info Box</font><br>Shelly API docs located</center>", description: "<center><a href='http://shelly-api-docs.shelly.cloud/' target='_blank'>[here]</a></center>"
}
}
def ping() {
if (txtEnable) log.info "ping"
poll()
}
def initialize() {
log.info "initialize"
}
def installed() {
log.debug "Installed"
state.DeviceName = "NotSet"
}
def uninstalled() {
log.debug "Uninstalled"
unschedule()
}
def updated() {
log.debug "Updated"
log.info "Preferences updated..."
log.warn "Debug logging is: ${debugOutput == true}"
unschedule()
switch(refresh_Rate) {
case "1 min" :
runEvery1Minute(autorefresh)
break
case "5 min" :
runEvery5Minutes(autorefresh)
break
case "15 min" :
runEvery15Minutes(autorefresh)
break
default:
runEvery30Minutes(autorefresh)
}
if (txtEnable) log.info ("Refresh set for every ${refresh_Rate} minute(s).")
if (debugOutput) runIn(1800,logsOff)
if (debugParse) runIn(1800,logsOff)
state.LastRefresh = new Date().format("YYYY/MM/dd \n HH:mm:ss", location.timeZone)
sendSwitchCommand "/settings?sntp_server=${ntp_server}"
// Set device and relay name
sendSwitchCommand "/settings?name=${devicename}"
dbCleanUp()
version()
refresh()
getSettings()
}
def refresh(){
logDebug "Shelly Status called"
def params1 = [uri: "http://${username}:${password}@${ip}/status"]
try {
httpGet(params1) {
resp1 -> resp1.headers.each {
logJSON "Response1: ${it.name} : ${it.value}"
}
obs1 = resp1.data
logJSON "params1: ${params1}"
logJSON "response1 contentType: ${resp1.contentType}"
logJSON "response1 data: ${resp1.data}"
// def each state
state.rssi = obs1.wifi_sta.rssi
state.ssid = obs1.wifi_sta.ssid
state.mac = obs1.mac
state.has_update = obs1.has_update
state.cloud = obs1.cloud.enabled
state.cloud_connected = obs1.cloud.connected
state.gas_detection = obs1.gas_sensor.alarm_state
sendEvent(name: "MAC", value: state.mac)
sendEvent(name: "SSID", value: state.ssid)
sendEvent(name: "IP", value: obs1.wifi_sta.ip)
sendEvent(name: "DeviceStatus", value: obs1.gas_sensor.sensor_state)
sendEvent(name: "ppm", value: obs1.concentration.ppm)
sendEvent(name: "carbonDioxide", value: obs1.concentration.ppm)
/*
-30 dBm Excellent | -67 dBm Good | -70 dBm Poor | -80 dBm Weak | -90 dBm Dead
*/
signal = state.rssi
if (signal <= 0 && signal >= -70) {
sendEvent(name: "WiFiSignal", value: "<font color='green'>Excellent</font>", isStateChange: true);
} else
if (signal < -70 && signal >= -80) {
sendEvent(name: "WiFiSignal", value: "<font color='green'>Good</font>", isStateChange: true);
} else
if (signal < -80 && signal >= -90) {
sendEvent(name: "WiFiSignal", value: "<font color='yellow'>Poor</font>", isStateChange: true);
} else
if (signal < -90 && signal >= -100) {
sendEvent(name: "WiFiSignal", value: "<font color='red'>Weak</font>", isStateChange: true);
}
updateDataValue("model", state.DeviceType)
updateDataValue("ShellyHostname", state.ShellyHostname)
updateDataValue("ShellyIP", obs1.wifi_sta.ip)
updateDataValue("ShellySSID", state.ssid)
updateDataValue("manufacturer", "Allterco Robotics")
updateDataValue("MAC", state.mac)
if (state.gas_detection == "none") sendEvent(name: "carbonMonoxide", value: "clear")
if (state.gas_detection == "mild" || state.gas_detection == "heavy") sendEvent(name: "carbonMonoxide", value: "detected")
if (state.gas_detection == "test") sendEvent(name: "carbonMonoxide", value: "tested")
sendEvent(name: "SelfTestStatus", value: obs1.gas_sensor.self_test_state)
if (state.gas_detection == "none") sendEvent(name: "gas", value: "clear")
if (state.gas_detection == "mild" || state.gas_detection == "heavy") sendEvent(name: "gas", value: "detected")
if (state.gas_detection == "test") sendEvent(name: "gas", value: "tested")
if (cloud == enabled) {
sendEvent(name: "Cloud", value: "<font color='green'>Enabled</font>")
} else {
sendEvent(name: "Cloud", value: "<font color='red'>Disabled</font>")
}
state.cloudConnected = obs1.cloud.connected
if (state.cloudConnected == true) {
sendEvent(name: "Cloud_Connected", value: "<font color='green'>Connected</font>")
} else {
sendEvent(name: "Cloud_Connected", value: "<font color='red'>Not Connected</font>")
}
// FW Updates
if (state.has_update == true) {
if (txtEnable) log.info "sendEvent NEW SHELLY FIRMWARE"
sendEvent(name: "FW_Update_Needed", value: "<font color='red'>FIRMWARE Update Required</font>")
}
if (state.has_update == false) {
if (txtEnable) log.info "sendEvent Device FW is current"
sendEvent(name: "FW_Update_Needed", value: "<font color='green'>Device FW is current</font>")
}
} // End try
} catch (e) {
log.error "something went wrong: $e"
}
} // End refresh
def getSettings(){
logDebug "Shelly Settings called"
def params = [uri: "http://${username}:${password}@${ip}/settings"]
try {
httpGet(params) {
resp -> resp.headers.each {
logJSON "Response: ${it.name} : ${it.value}"
}
obs = resp.data
logJSON "params: ${params}"
logJSON "response contentType: ${resp.contentType}"
logJSON "response data: ${resp.data}"
state.DeviceType = obs.device.type
state.ShellyHostname = obs.device.hostname
state.sntp_server = obs.sntp.server
sendEvent(name: "NTPServer", value: state.sntp_server)
sendEvent(name: "Volume", value: obs.set_volume)
//Get Device name
if (obs.name != "NotSet") {
state.DeviceName = obs.name
sendEvent(name: "DeviceName", value: state.DeviceName)
updateDataValue("DeviceName", state.DeviceName)
if (txtEnable) log.info "DeviceName is ${obs.name}"
} else if (obs.name != null) {
state.DeviceName = "NotSet"
sendEvent(name: "DeviceName", value: state.DeviceName)
if (txtEnable) log.info "DeviceName is ${obs.name}"
}
} // End try
} catch (e) {
log.error "something went wrong: $e"
}
} // End refresh
def selfTest() {
log.info ("Executing self test")
if (username != null) {
host = "${username}:${password}@${ip}"
} else {
host = "${ip}"
}
sendHubCommand(new hubitat.device.HubAction(
method: "POST",
path: "/self_test",
body: action,
headers: [
HOST: host,
"Content-Type": "application/x-www-form-urlencoded"
]
))
for (i = 0; i <3; i++) {
log.info ("Refreshing")
refresh()
runIn(25,refresh)
}
// runIn(1,refresh)
}
def mute() {
if (txtEnable) log.info "Executing mute"
if (username != null) {
host = "${username}:${password}@${ip}"
} else {
host = "${ip}"
}
sendHubCommand(new hubitat.device.HubAction(
method: "POST",
path: "/mute",
body: action,
headers: [
HOST: host,
"Content-Type": "application/x-www-form-urlencoded"
]
))
}
def unmute() {
if (txtEnable) log.info "Executing unmute"
if (username != null) {
host = "${username}:${password}@${ip}"
} else {
host = "${ip}"
}
sendHubCommand(new hubitat.device.HubAction(
method: "POST",
path: "/unmute",
body: action,
headers: [
HOST: host,
"Content-Type": "application/x-www-form-urlencoded"
]
))
}
def setVolume(vol) {
if (txtEnable) log.info "Setting Volume to ${vol}"
if (username != null) {
host = "${username}:${password}@${ip}"
} else {
host = "${ip}"
}
sendHubCommand(new hubitat.device.HubAction(
method: "POST",
path: "/settings?set_volume=${vol}",
body: action,
headers: [
HOST: host,
"Content-Type": "application/x-www-form-urlencoded"
]
))
runIn(3,getSettings)
}
// End Direct Device Commands
def logsOff(){
log.warn "debug logging auto disabled..."
device.updateSetting("debugOutput",[value:"false",type:"bool"])
device.updateSetting("debugParse",[value:"false",type:"bool"])
}
def autorefresh() {
if (locale == "UK") {
if (debugOutput) log.info "Get last UK Date DD/MM/YYYY"
state.LastRefresh = new Date().format("d/MM/YYYY \n HH:mm:ss", location.timeZone)
sendEvent(name: "LastRefresh", value: state.LastRefresh, descriptionText: "Last refresh performed")
}
if (locale == "US") {
if (debugOutput) log.info "Get last US Date MM/DD/YYYY"
state.LastRefresh = new Date().format("MM/d/YYYY \n HH:mm:ss", location.timeZone)
sendEvent(name: "LastRefresh", value: state.LastRefresh, descriptionText: "Last refresh performed")
}
if (txtEnable) log.info "Executing 'auto refresh'" //RK
getSettings()
refresh()
}
private logDebug(msg) {
if (settings?.debugOutput || settings?.debugOutput == null) {
log.debug "$msg"
}
}
private logJSON(msg) {
if (settings?.debugParse || settings?.debugParse == null) {
log.info "$msg"
}
}
// handle commands
//RK Updated to include last refreshed
def poll() {
if (locale == "UK") {
if (debugOutput) log.info "Get last UK Date DD/MM/YYYY"
state.LastRefresh = new Date().format("d/MM/YYYY \n HH:mm:ss", location.timeZone)
sendEvent(name: "LastRefresh", value: state.LastRefresh, descriptionText: "Last refresh performed")
}
if (locale == "US") {
if (debugOutput) log.info "Get last US Date MM/DD/YYYY"
state.LastRefresh = new Date().format("MM/d/YYYY \n HH:mm:ss", location.timeZone)
sendEvent(name: "LastRefresh", value: state.LastRefresh, descriptionText: "Last refresh performed")
}
if (txtEnable) log.info "Executing 'poll'" //RK
dbCleanUp()
refresh()
}
def sendSwitchCommand(action) {
if (txtEnable) log.info "Calling ${action}"
def path = path
def body = body
def headers = [:]
if (username != null) {
headers.put("HOST", "${username}:${password}@${ip}")
} else {
headers.put("HOST", "${ip}")
}
headers.put("Content-Type", "application/x-www-form-urlencoded")
runIn(2, refresh)
try {
def hubAction = new hubitat.device.HubAction(
method: method,
path: action,
body: body,
headers: headers
)
logDebug hubAction
return hubAction
}
catch (Exception e) {
logDebug "sendSwitchCommand hit exception ${e} on ${hubAction}"
}
}
def RebootDevice() {
if (txtEnable) log.info "Rebooting Device"
def params = [uri: "http://${username}:${password}@${ip}/reboot"]
try {
httpPost(params) {
resp -> resp.headers.each {
logDebug "Response: ${it.name} : ${it.value}"
}
} // End try
} catch (e) {
log.error "something went wrong: $e"
}
runIn(15,refresh)
}
def UpdateDeviceFW() {
if (txtEnable) log.info "Updating Device FW"
if (username != null) {
host = "${username}:${password}@${ip}"
} else {
host = "${ip}"
}
sendEvent(name: "FW_Update_Needed", value: "Please Wait..Updating FW.")
sendHubCommand(new hubitat.device.HubAction(
method: "POST",
path: "/ota?update=1",
body: action,
headers: [
HOST: host,
"Content-Type": "application/x-www-form-urlencoded"
]
))
runIn(30,refresh)
}
def parse(description) {
return
}
private dbCleanUp() {
// unschedule()
state.remove("UpdateInfo")
state.remove("Current")
state.remove("InternalName")
state.remove("version")
state.remove("Version")
state.remove("Status")
state.remove("effect")
state.remove("powerSource")
}
// App Version *********************************************************************************
def setVersion(){
state.Version = "1.0.0"
state.InternalName = "ShellyGas"
}
// Check Version ***** with great thanks and acknowlegment to Cobra (github CobraVmax) for his original code **************
def version(){
updatecheck()
schedule("0 0 18 1/1 * ? *", updatecheck) // Cron schedule
// schedule("0 0/1 * 1/1 * ? *", updatecheck) // Test Cron schedule
}
def updatecheck(){
setVersion()
def paramsUD = [uri: "https://raw.githubusercontent.com/ShellyUSA/Hubitat-Drivers/master/resources/version.json", contentType: "application/json; charset=utf-8"]
try {
httpGet(paramsUD) { respUD ->
if (debugParse) log.warn " Version Checking - Response Data: ${respUD.data}"
def copyrightRead = (respUD.data.copyright)
state.Copyright = copyrightRead
def newVerRaw = (respUD.data.versions.Driver.(state.InternalName))
def newVer = (respUD.data.versions.Driver.(state.InternalName).replace(".", ""))
def currentVer = state.Version.replace(".", "")
state.UpdateInfo = (respUD.data.versions.UpdateInfo.Driver.(state.InternalName))
state.author = (respUD.data.author)
state.icon = (respUD.data.icon)
if(newVer == "NLS"){
state.DriverStatus = "<b>** This driver is no longer supported by $state.author **</b>"
log.warn "** This driver is no longer supported by $state.author **"
}
else if(currentVer < newVer){
state.DriverStatus = "<b>New Version Available (Version: $newVerRaw)</b>"
log.warn "** There is a newer version of this driver available (Version: $newVerRaw) **"
log.warn "** $state.UpdateInfo **"
}
else if(currentVer > newVer){
state.DriverStatus = "<b>You are using a Test version of this Driver (Version: $newVerRaw)</b>"
}
else{
state.DriverStatus = "Current"
log.info "You are using the current version of this driver"
}
} // httpGet
} // try
catch (e) {
log.error "Something went wrong: CHECK THE JSON FILE AND IT'S URI - $e"
}
if(state.DriverStatus == "Current"){
state.UpdateInfo = "Up to date"
sendEvent(name: "DriverUpdate", value: state.UpdateInfo)
sendEvent(name: "DriverStatus", value: state.DriverStatus)
}
else {
sendEvent(name: "DriverUpdate", value: state.UpdateInfo)
sendEvent(name: "DriverStatus", value: state.DriverStatus)
}
sendEvent(name: "DriverAuthor", value: "sgrayban")
sendEvent(name: "DriverVersion", value: state.Version)
}