-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js.example
64 lines (64 loc) · 1.14 KB
/
config.js.example
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
{
module: 'MMM-Serial-Notifications',
config: {
devices: {
'/dev/ard_nano_2': {
messages: {
'In_Distance (1)': [
{
notification: 'SCREEN_TOGGLE',
payload: {
forced: true
}
},
{
notification: 'USER_PRESENCE',
payload: true
}
],
'In_Distance (2)': [
{
notification: 'VOLUME_TOGGLE',
payload: {
faded: true,
upDownScale: 8
}
},
{
notification: 'USER_PRESENCE',
payload: true
}
],
}
},
'/dev/ard_nano_1': {
messages: {
'Gesture: RIGHT': [
{
notification: 'VOLUME_UP',
payload: {
upDownScale: 5
}
},
{
notification: 'USER_PRESENCE',
payload: true
}
],
'Gesture: LEFT': [
{
notification: 'VOLUME_DOWN',
payload: {
upDownScale: 8
}
},
{
notification: 'USER_PRESENCE',
payload: true
}
]
}
}
}
}
}