this repo has no description
1# solux lighting strategy
2#
3# philosophy: dim and warm. never harsh or bright.
4# lights follow sun position but stay cozy throughout the day.
5#
6# brightness (bri): 0-254 scale, we cap at 70
7# color temp (ct): 153=cool/6500K, 500=warm/2000K, we stay 350-500
8#
9# phases are anchored to actual sun times (calculated via astral library)
10# and interpolate smoothly between each other.
11
12phases:
13 dawn:
14 anchor: dawn
15 bri: 25
16 ct: 450 # warm, gentle wake
17
18 sunrise:
19 anchor: sunrise
20 bri: 50
21 ct: 400
22
23 morning:
24 anchor: sunrise + 1h
25 bri: 70 # peak brightness
26 ct: 370
27
28 midday:
29 anchor: noon
30 bri: 70 # peak brightness
31 ct: 350 # warmest daytime, but still cozy
32
33 afternoon:
34 anchor: noon + 3h
35 bri: 60
36 ct: 380
37
38 golden_hour:
39 anchor: sunset - 1h
40 bri: 50
41 ct: 420
42
43 sunset:
44 anchor: sunset
45 bri: 40
46 ct: 450
47
48 dusk:
49 anchor: dusk
50 bri: 30
51 ct: 480
52
53 evening:
54 anchor: dusk + 1h
55 bri: 20
56 ct: 500 # full warm
57
58 night:
59 anchor: dusk + 3h
60 bri: 10
61 ct: 500 # full warm
62
63# special modes (override circadian rhythm)
64modes:
65 away:
66 on: false
67
68 sleep:
69 on: false
70
71 bedtime:
72 bri: 15
73 ct: 500
74
75 wake:
76 bri: 100
77 ct: 350