-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathABigSwitch[bkeifer@smartthings].js
59 lines (32 loc) · 1.55 KB
/
ABigSwitch[bkeifer@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
const { SmartApp } = require('@smartthings/smartapp')
module.exports = new SmartApp()
.enableEventLogging(2)
.configureI18n()
.page('mainPage', (context, page, configData) => {
page.section('When this switch is turned on or off', section => {
section.deviceSetting('master').capability(['switch']).name('Where?');
});
page.section('Turn on or off all of these switches as well', section => {
section.deviceSetting('switches').capability(['switch']).name('');
});
page.section('And turn off but not on all of these switches', section => {
section.deviceSetting('offSwitches').capability(['switch']).name('');
});
page.section('And turn on but not off all of these switches', section => {
section.deviceSetting('onSwitches').capability(['switch']).name('');
});
})
.updated(async (context, updateData) => {
await context.api.subscriptions.subscribeToDevices(context.config.master, 'switch', 'switch.off', 'offHandler')
await context.api.subscriptions.subscribeToDevices(context.config.master, 'switch', 'switch.on', 'onHandler')
})
.subscribedEventHandler('onHandler', (context, event) => {
console.log(event.value)
console.log(this.onSwitches())
this.onSwitches()?.on()
})
.subscribedEventHandler('offHandler', (context, event) => {
console.log(event.value)
console.log(this.offSwitches())
this.offSwitches()?.off()
})