-
Notifications
You must be signed in to change notification settings - Fork 12
/
config-sample.json
51 lines (51 loc) · 1.58 KB
/
config-sample.json
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
{
"platforms": [
{
"platform": "MagicHome-Platform",
"debug": true,
"disableDiscovery": false,
"lights": [
{
"name": "Kitchen LED Strip",
"ip": "DC4F22C5D4E1",
"setup": "RGBW",
"purewhite": false,
"timeout": 10000
},
{
"name": "Living Room LED Strip",
"ip": "192.168.1.112",
"setup": "RGBWW",
"purewhite": true,
"timeout": 0
}
],
"presetSwitches": [
{
"name": "Kitchen Color Strobe Flash (Party)",
"ips": {
"192.168.1.111": "255,255,255"
},
"preset": "seven_color_strobe_flash",
"speed": 60
},
{
"name": "All Lights Cross Fade (Soothing)",
"ips": {
"DC4F22C5D4E1": "0,150,255",
"192.168.1.112": "102,255,102"
},
"preset": "seven_color_cross_fade",
"speed": 40,
"shouldTurnOff": true
}
],
"resetSwitch": {
"name": "Reset All Switches to Default",
"ips": {
"192.168.1.111": "255,255,255"
}
}
}
]
}