forked from ALLTERCO/shelly-script-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdouble-press-double-switch.js
More file actions
77 lines (56 loc) · 2.88 KB
/
double-press-double-switch.js
File metadata and controls
77 lines (56 loc) · 2.88 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
// the script show how perform mutliple action with a double classic switch used to toggle light.
// They keep their state once pressed, it usefull when the switch directly control the light.
// However it complicate double press actions when paired with a shelly. This script aim to solve this issue
// This version is designed for double switch, check double press switch if you have a simple one or don't plan
// to use to bonus action full off action to turn all light off when pressing the two button at the same time.
let CONFIG = {
simpleClickAction1: 'http://shelly1-ip/rpc/Switch.Toggle?id=0',
doubleClickAction1: 'http://shelly1-ip/rpc/Switch.Toggle?id=1',
simpleClickAction2: 'http://shelly2-ip/rpc/Switch.Toggle?id=0',
doubleClickAction2: 'http://shelly2-ip/rpc/Switch.Toggle?id=1',
simpleClickAction1FullOff: 'http://shelly1-ip/rpc/Switch.Set?id=0&on=false',
doubleClickAction1FullOff: 'http://shelly1-ip/rpc/Switch.Set?id=1&on=false',
simpleClickAction2FullOff: 'http://shelly2-ip/rpc/Switch.Set?id=0&on=false',
doubleClickAction2FullOff: 'http://shelly2-ip/rpc/Switch.Set?id=1&on=false',
doubleClickDelay: 250,
buttonId1: 0,
buttonId2: 1
};
let previouHitButtonId = undefined;
let timer = undefined;
function resetTimer() {
Timer.clear(timer);
timer = undefined;
previouHitButtonId = undefined;
}
function toggleLight(action) {
resetTimer();
Shelly.call("http.get", {url: action});
}
Shelly.addEventHandler(
function (event, user_data) {
if (typeof event.info.event !== 'undefined' && event.info.event === 'toggle') {
if (timer === undefined && event.info.id === CONFIG.buttonId1) {
timer = Timer.set(CONFIG.doubleClickDelay, 0, toggleLight, CONFIG.simpleClickAction1);
previouHitButtonId = CONFIG.buttonId1;
} else if (timer === undefined && event.info.id === CONFIG.buttonId2) {
timer = Timer.set(CONFIG.doubleClickDelay, 0, toggleLight, CONFIG.simpleClickAction2);
previouHitButtonId = CONFIG.buttonId2;
} else if (timer !== undefined && event.info.id === previouHitButtonId) {
if (event.info.id === CONFIG.buttonId1) {
resetTimer();
toggleLight(CONFIG.doubleClickAction1);
} else if (event.info.id === CONFIG.buttonId2) {
resetTimer();
toggleLight(CONFIG.doubleClickAction2);
}
} else if (timer !== undefined && event.info.id !== previouHitButtonId) {
resetTimer();
toggleLight(CONFIG.simpleClickAction1FullOff);
toggleLight(CONFIG.doubleClickAction1FullOff);
toggleLight(CONFIG.simpleClickAction2FullOff);
toggleLight(CONFIG.doubleClickAction2FullOff);
}
}
}
)