-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple-config.json
89 lines (89 loc) · 1.77 KB
/
simple-config.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
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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "Simple config",
"bridge": {
"name": "My bridge",
"long": "74.0060W",
"lat": "40.7128N"
},
"rooms": [
{
"id": "my_bedroom",
"name": "Alex's bedroom"
}
],
"lights": [
{
"id": "ceiling",
"mac": "00:17:88:01:0c:28:e3:8c-0b",
"serial": "267F81",
"name": "Bedroom ceiling bulb",
"room": "my_bedroom"
},
{
"id": "bed_table",
"mac": "00:17:88:01:0b:e4:c9:f8-0b",
"serial": "D775E8",
"name": "Bed color candle",
"room": "my_bedroom"
}
],
"defaults": {
"powerup-behavior": "powerfail",
"scenes": {
"day": {
"id": "default_day_scene",
"name": "Day (default)",
"light-action": {
"id": "default_day_action",
"mirek": 323,
"brightness": 100
}
},
"night": {
"id": "default_night_scene",
"name": "Night (default)",
"light-action": {
"id": "default_night_action",
"mirek": 500,
"brightness": 25
}
},
"evening": {
"id": "default_evening_scene",
"name": "Evening (default)",
"light-action": {
"id": "default_evening_action",
"mirek": 500,
"brightness": 50
}
}
}
},
"scenes": [
{
"id": "my_bedroom_blue_scene",
"groups": ["my_bedroom"],
"name": "Blue scene",
"actions": [
{
"target": "ceiling",
"light-action": "blue_action"
},
{
"target": "bed_table",
"light-action": "blue_action"
}
]
}
],
"light-actions": [
{
"id": "blue_action",
"color": {
"x": 0.1534,
"y": 0.0539
},
"brightness": 100
}
]
}