1
0
mirror of https://github.com/Adam-Ant/home-assistant synced 2024-07-31 00:26:10 +00:00
home-assistant/automation/alarmclock.yaml
2016-11-29 23:51:29 +00:00

28 lines
697 B
YAML

- alias: 'Wake Me Up'
trigger:
platform: template
value_template: '{{ states.sensor.time.state == states.sensor.alarm_time.state }}'
condition:
condition: or
conditions:
- condition: and
conditions:
- condition: state
entity_id: input_boolean.alarmweekday
state: 'on'
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
- condition: state
entity_id: input_boolean.alarmweekday
state: 'off'
action:
service: notify.notify
data_template:
message: 'Good morning. Time to Wake Up!'
title: ''