From 0482c1d431cfc00b3f00ec906507bf4dfe47f0a2 Mon Sep 17 00:00:00 2001 From: Carlo Costanzo Date: Sat, 29 Nov 2025 13:21:58 -0500 Subject: [PATCH] Refactor living room automation for clarity and consistency --- .../living_room_color_defaults.yaml | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/config/automation/living_room_color_defaults.yaml b/config/automation/living_room_color_defaults.yaml index 725f03d6..f96b057a 100644 --- a/config/automation/living_room_color_defaults.yaml +++ b/config/automation/living_room_color_defaults.yaml @@ -78,34 +78,34 @@ kelvin: 2700 brightness: 200 - - alias: 'Living Room Red on Entry/Garage Open' - id: living_room_red_on_entry_open - mode: restart - variables: - was_off: "{{ is_state('light.living_room_lights', 'off') }}" - trigger: - - platform: state - entity_id: group.entry_points - to: 'on' - - platform: state - entity_id: group.garage_doors - from: 'closed' - to: 'open' - action: - - service: scene.turn_on - target: - entity_id: scene.red_living_room - - wait_for_trigger: - - platform: state - entity_id: group.entry_points - to: 'off' - - platform: state - entity_id: group.garage_doors - to: 'closed' - timeout: "01:00:00" - - choose: - - conditions: "{{ was_off }}" - sequence: - - service: light.turn_off - target: - entity_id: light.living_room_lights +- alias: 'Living Room Red on Entry/Garage Open' + id: living_room_red_on_entry_open + mode: restart + variables: + was_off: "{{ is_state('light.living_room_lights', 'off') }}" + trigger: + - platform: state + entity_id: group.entry_points + to: 'on' + - platform: state + entity_id: group.garage_doors + from: 'closed' + to: 'open' + action: + - service: scene.turn_on + target: + entity_id: scene.red_living_room + - wait_for_trigger: + - platform: state + entity_id: group.entry_points + to: 'off' + - platform: state + entity_id: group.garage_doors + to: 'closed' + timeout: "01:00:00" + - choose: + - conditions: "{{ was_off }}" + sequence: + - service: light.turn_off + target: + entity_id: light.living_room_lights