Files
hassio-configuration/configuration/automation/light_on_off_bedroom_olivia.yaml
2025-02-07 12:46:24 -05:00

25 lines
724 B
YAML

---
- alias: "[Bedroom Olivia] Light On (by input_boolean)"
initial_state: "true"
trigger:
- platform: state
entity_id: input_boolean.bedroom_olivia_light_state
to: "on"
action:
- service: scene.turn_on
data_template:
entity_id: scene.bedroom_olivia_{{ states.input_text.bedroom_olivia_last_scene.state | replace(' ', '_') | lower | string }}
transition: 2.5
- alias: "[Bedroom Olivia] Light Off (by input boolean)"
initial_state: "true"
trigger:
- platform: state
entity_id: input_boolean.bedroom_olivia_light_state
to: "off"
action:
- service: scene.turn_on
data_template:
entity_id: scene.bedroom_olivia_off
transition: 2.5