Add correct Kelvin settings for stairwell LED strip in time-based flow

This commit is contained in:
2024-01-10 21:59:56 -05:00
parent 0d19ef1d5b
commit c7ee7292f7

View File

@ -62,12 +62,14 @@ if (upBathOcc === 'off') {
}
// Stairwell light strip settings
let stairKelvin = 2000
let stairKelvin = {}
let stairBrt = {}
let stairEntity = ["light.stairwell_led_strip"]
if (time === 'day') {
stairKelvin = 4000
stairBrt = 255
} else if (time === 'night') {
stairKelvin = 2000
stairBrt = 150
}