1
0
ansible-home-assistant/templates/lights.yaml.j2

19 lines
418 B
Plaintext
Raw Normal View History

2020-11-03 23:55:41 +00:00
{% 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'
2020-11-03 23:55:41 +00:00
action:
- service: light.turn_on
data:
kelvin: 2000
entity_id: {{ light.entityId }}
mode: single
{% endfor %}