1
0

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
This commit is contained in:
Przemek Grondek 2021-08-12 00:46:27 +02:00
parent c25970553e
commit a3b1355aa4

View File

@ -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 %}