From a3b1355aa4d68abae8d04cb64aeebc0e4ca7ada1 Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Thu, 12 Aug 2021 00:46:27 +0200 Subject: [PATCH] Remove problematic automations Day-On turns on lights when group is turning off logic from this automations has been moved to automations that turns lights on --- templates/lights.yaml.j2 | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/templates/lights.yaml.j2 b/templates/lights.yaml.j2 index 6c9e362..e4d266b 100644 --- a/templates/lights.yaml.j2 +++ b/templates/lights.yaml.j2 @@ -15,21 +15,4 @@ kelvin: 2000 entity_id: {{ light.entityId }} mode: single -- id: day_on_{{ light.entityId }} - alias: '[Day-On] {{ light.name }}' - trigger: - - platform: state - entity_id: {{ light.entityId }} - to: 'on' - condition: - - condition: state - entity_id: input_boolean.sleep_mode - state: 'off' - action: - - service: light.turn_on - data: - kelvin: 3200 - entity_id: {{ light.entityId }} - mode: single - {% endfor %}