Home-AssistantConfig/config/automation/kitchen_lights_and_accents....

70 lines
2.0 KiB
YAML
Raw Normal View History

2018-01-02 00:00:45 +00:00
#####################################################################################
### If the Kitchen Lights go on for more than 10 minutes, turn off the accent lights
### connected to [Etekcity Outlets](https://amzn.to/2efNoBP)
## [433Mhz Transmitter and receiver](https://amzn.to/2dceNY2)
2018-01-02 00:00:45 +00:00
#####################################################################################
- alias: Kitchen lights on - Accent lights off
trigger:
- platform: state
entity_id: light.kitchen_lights
2018-01-02 00:00:45 +00:00
to: 'on'
for: '00:05:00'
condition:
- condition: state
2019-08-17 19:18:36 +00:00
entity_id: group.kitchen_Accents
2018-01-02 00:00:45 +00:00
state: 'on'
action:
- service: switch.turn_off
2019-08-17 19:18:36 +00:00
entity_id: group.kitchen_Accents
2018-01-02 00:00:45 +00:00
##############################################################################
- alias: Kitchen lights off - turn on Accent lights
trigger:
- platform: state
entity_id: light.kitchen_lights
2018-01-02 00:00:45 +00:00
to: 'off'
for: '00:05:00'
- platform: state
entity_id: sun.sun
to: 'below_horizon'
from: 'above_horizon'
condition:
- condition: sun
after: 'sunset'
- condition: state
entity_id: light.kitchen_lights
2018-01-02 00:00:45 +00:00
state: 'off'
- condition: or
conditions:
- condition: state
entity_id: binary_sensor.sleepnumber_carlo_carlo_is_in_bed
state: 'off'
- condition: state
entity_id: device_tracker.carlo
state: 'not_home'
- condition: or
conditions:
2018-01-02 00:00:45 +00:00
- condition: state
entity_id: binary_sensor.sleepnumber_carlo_stacey_is_in_bed
state: 'off'
- condition: state
entity_id: device_tracker.stacey
state: 'not_home'
2018-01-02 00:00:45 +00:00
- condition: or
conditions:
- condition: state
entity_id: group.family
state: 'home'
- condition: state
entity_id: input_boolean.guest_mode
state: 'on'
action:
- service: switch.turn_on
2019-08-17 19:18:36 +00:00
entity_id: group.kitchen_Accents