mirror of
https://github.com/Adam-Ant/home-assistant
synced 2024-11-08 13:16:21 +00:00
28 lines
697 B
YAML
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: ''
|