-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBatteryMon[tyuhl@SmartThings].js
65 lines (49 loc) · 1.97 KB
/
BatteryMon[tyuhl@SmartThings].js
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
const { SmartApp } = require('@smartthings/smartapp')
module.exports = new SmartApp()
.enableEventLogging(2)
.configureI18n()
.page('mainPage', (context, page, configData) => {
page.section(''About'', section => {
});
page.section('Monitoring group ${(i + 1)}', section => {
section.deviceSetting('group_$i').capability(['battery']).name('Select devices to monitor');
section.numberSetting('threshold_$i').name('Notify if battery is below');
});
})
.updated(async (context, updateData) => {
context.api.schedules.schedule('check_batteries', delay);
})
.scheduledEventHandler('check_batteries', (context, event) => {
let size
let batteries
let device
let threshold
let value
let sms
for (java.lang.Integer i = 0; i < 4; i++) {
size = settings["group_$i"]?.size() ? settings["group_$i"]?.size() : 0
sms = settings."sms_$i".toString() ? settings."sms_$i".toString() : 0
if (size > 0) {
threshold = settings."threshold_$i".toInteger()
console.log("***Checking batteries for group ${(i + 1)} (threshold $threshold)")
batteries = settings."group_$i".currentValue('battery')
for (java.lang.Integer j = 0; j < size ; j++) {
device = settings["group_$i"][ j ]
if (device != null) {
value = batteries[ j ]
if (value != null && value < threshold ) {
console.log("The $device battery is at $value, below threshold ($threshold)")
this.sendPush("The $device battery is at $value, below threshold ($threshold)")
if (sms) {
this.sendSms(sms, "The $device battery is at $value, below threshold ($threshold)")
}
} else {
console.log("The $device battery is at $value")
}
}
}
} else {
console.log("***Group ${(i + 1)} has no devices ($size devices)")
}
}
})