22 lines
578 B
YAML
Executable File
22 lines
578 B
YAML
Executable File
######################################################################
|
|
## Time to eat - Set it up!
|
|
######################################################################
|
|
|
|
- alias: Meal Time
|
|
trigger:
|
|
- platform: state
|
|
entity_id: input_boolean.meal_time
|
|
to: 'on'
|
|
from: 'off'
|
|
|
|
action:
|
|
- service: light.turn_on
|
|
entity_id:
|
|
- group.dinette_lights
|
|
- group.kitchen_lights
|
|
- service: light.turn_off
|
|
entity_id:
|
|
- group.living_room_lights
|
|
- service: input_boolean.turn_off
|
|
entity_id: input_boolean.meal_time
|