This is the current config. Moved old to the v1-config branch

This commit is contained in:
Jeffrey Stone
2018-03-06 11:10:52 -05:00
parent 5d3079379d
commit cbaacdc5fa
22 changed files with 1308 additions and 9 deletions

View File

@@ -0,0 +1,44 @@
#
#
# Notifications
#
#
#####################
- alias: Turn Off Audible Notifications at 8pm
trigger:
- platform: time
hours: 20
minutes: 0
seconds: 0
action:
- service: input_boolean.turn_off
entity_id: input_boolean.audible_notifications
- alias: Turn Off Audible Notifications at 7pm
trigger:
- platform: time
hours: 19
minutes: 0
seconds: 0
condition:
- condition: state
entity_id: input_boolean.guest_mode
state: 'on'
action:
- service: input_boolean.turn_off
entity_id: input_boolean.audible_notifications
- alias: Turn On Audible Notifications at 8am
trigger:
- platform: time
hours: 8
minutes: 0
seconds: 0
action:
- entity_id: input_boolean.audible_notifications
service: input_boolean.turn_on