1
0
ansible-home-assistant/templates/lights.yaml.j2
Przemek Grondek a3b1355aa4 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
2021-08-12 00:46:27 +02:00

19 lines
418 B
Django/Jinja

{% for light in lights %}
# {{ light.name }}
- id: sleep_on_{{ light.entityId }}
alias: '[Sleep-On] {{ light.name }}'
trigger:
- platform: time
at: input_datetime.sleep_mode
condition:
- condition: state
entity_id: {{ light.entityId }}
state: 'on'
action:
- service: light.turn_on
data:
kelvin: 2000
entity_id: {{ light.entityId }}
mode: single
{% endfor %}