From 3b3a12f4152024c70376e68ccbb1bf414e39999f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Grondek?= Date: Sat, 16 Dec 2023 00:58:27 +0100 Subject: [PATCH] Fix office lights at night --- scripts/95.lights-office.yaml | 43 +++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 12 deletions(-) diff --git a/scripts/95.lights-office.yaml b/scripts/95.lights-office.yaml index 285bc31..ecc9af8 100644 --- a/scripts/95.lights-office.yaml +++ b/scripts/95.lights-office.yaml @@ -27,21 +27,40 @@ office_lights_on: - choose: - conditions: - condition: state - entity_id: input_boolean.sleep_mode - state: 'on' + entity_id: input_select.home_mode + state: Day sequence: - - service: light.turn_on - entity_id: light.office - data: - brightness_pct: 100 - kelvin: 2000 + - choose: + - conditions: + - condition: state + entity_id: input_boolean.sleep_mode + state: 'on' + sequence: + - service: light.turn_on + entity_id: light.office + data: + brightness_pct: 100 + kelvin: 2000 + - conditions: + - condition: state + entity_id: input_boolean.sleep_mode + state: 'off' + sequence: + - service: light.turn_on + entity_id: light.office + data: + brightness_pct: 100 + kelvin: 3200 - conditions: - condition: state - entity_id: input_boolean.sleep_mode - state: 'off' + entity_id: input_select.home_mode + state: Night sequence: - service: light.turn_on - entity_id: light.office data: - brightness_pct: 100 - kelvin: 3200 + brightness_pct: 40 + hs_color: + - 360 + - 100 + target: + entity_id: light.office