From c7ee7292f71305c65389948154d3e88682ad16c4 Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Wed, 10 Jan 2024 21:59:56 -0500 Subject: [PATCH] Add correct Kelvin settings for stairwell LED strip in time-based flow --- time-based/processing.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/time-based/processing.js b/time-based/processing.js index bdb4485..69bb3db 100644 --- a/time-based/processing.js +++ b/time-based/processing.js @@ -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 }