-
Notifications
You must be signed in to change notification settings - Fork 0
/
heliotron.sample.ini
109 lines (94 loc) · 2.51 KB
/
heliotron.sample.ini
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[general]
ip = 10.0.0.42
app = testscript
night = 3400K
daytime = 6500K
transition_secs = 20
city = Dallas
coordinates = 32.9614, -96.8259
flux_mode = false
## The following maps the Philips bridge's bulb IDs with
## big-endian style names for each bulb; this scheme becomes
## quite handy for globbing purposes in subsequent sections.
[lights]
10 = entry.door
7 = entry.common
5 = kitchen.track.a
9 = kitchen.track.c
8 = lr.torch
6 = lr.couch
2 = office.couch
3 = office.torch
1 = bedroom.torch
4 = bedroom.nightstand
## Establish a set of groups for common types or areas of
## lighting. For instance, your entire living room, your
## bedroom, all lights near a window, etc.
[groups]
lr = lr.*, entry.*
kitchen = kitchen.track.*
bedroom = bedroom.*
office = office.*
entry = entry.*
lamps = lr.couch, office.couch, bedroom.nightstand
## Scenes establish both the transition to and final state
## of a series of lights, along with their luminescence.
## They may be assigned to specific days and times, or may
## exist solely to be activated on an on-demand basis.
## Leaving the apartment
[scene:away.on]
transition_secs = 30
temperature = 4000K
lights = all:off, entry:5%, kitchen.track.c:5%
## Returning to the apartment
[scene:away.off]
transition_secs = 5
temperature = 4500K
lights = all:off, entry:15%, kitchen:15%, lamps:70%
## Workdays - Wake up
[scene:work.morning.wake]
days = Mon, Tue, Wed, Thu, Fri
time = 05:30
transition_secs = 60
temperature = 5000K
lights = bedroom:60%, kitchen:30%, office:30%
## Workdays - Prepare for departure
[scene:work.morning.depart]
days = Mon, Tue, Wed, Thu, Fri
time = 06:40
transition_secs = 60
temperature = 5000K
lights = all:off, entry:10%
## Workdays - Prepare for arrival
[scene:work.evening.arrive]
days = Mon, Tue, Wed, Thu, Fri
time = 17:00
transition_secs = 60
temperature = 5000K
lights = all:off, kitchen:50%, office:50%, entry:10%, lamps:10%
## Workdays - Definitely (hopefully) home
[scene:work.evening.settle]
days = Mon, Tue, Wed, Thu, Fri
time = 18:00
transition_secs = 300
temperature = 4500K
lights = all:off, kitchen:50%, office:80%, entry:10%, lamps:30%
[scene:work.evening.slowdown]
days = Mon, Tue, Wed, Thu, Fri
time = 20:45
transition_secs = 600
temperature = 3400K
lights = active:40%, entry:10%,
[scene:work.evening.sleep]
days = Mon, Tue, Wed, Thu, Fri
time = 22:45
transition_secs = 600
temperature = 3000K
lights = all:off
## Weekend
[scene:weekend.morning.wake]
days = Sun, Sat
time = 07:30
transition_secs = 120
temperature = 6500K
lights = bedroom:70%, kitchen:30%, office:50%