add 'midnight' preset to lights and flux
This commit is contained in:
parent
05d27f1983
commit
c6acac3e86
2 changed files with 6 additions and 0 deletions
2
flux
2
flux
|
|
@ -35,10 +35,12 @@ def flux(options)
|
||||||
month = date.month.to_s
|
month = date.month.to_s
|
||||||
day = date.day.to_s
|
day = date.day.to_s
|
||||||
if times = TIMES[month][day]
|
if times = TIMES[month][day]
|
||||||
|
times['midnight'] = '22:30'
|
||||||
puts "sunrise: #{times['sunrise']}"
|
puts "sunrise: #{times['sunrise']}"
|
||||||
puts "morning: #{times['morning']}"
|
puts "morning: #{times['morning']}"
|
||||||
puts "sunset: #{times['sunset']}"
|
puts "sunset: #{times['sunset']}"
|
||||||
puts "night: #{times['night']}"
|
puts "night: #{times['night']}"
|
||||||
|
puts "midnight: #{times['midnight']}"
|
||||||
|
|
||||||
time = Time.now
|
time = Time.now
|
||||||
hour, min = time.hour, time.min
|
hour, min = time.hour, time.min
|
||||||
|
|
|
||||||
4
lights
4
lights
|
|
@ -32,6 +32,10 @@ TEMPS = {
|
||||||
brightness: 160,
|
brightness: 160,
|
||||||
temp: 2200,
|
temp: 2200,
|
||||||
},
|
},
|
||||||
|
'midnight' => {
|
||||||
|
brightness: 80,
|
||||||
|
temp: 1200,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
TEMPS['sunny'] = TEMPS['bright']
|
TEMPS['sunny'] = TEMPS['bright']
|
||||||
TEMPS['overcast'] = TEMPS['cloudy']
|
TEMPS['overcast'] = TEMPS['cloudy']
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue