25 lines
661 B
YAML
25 lines
661 B
YAML
---
|
|
- alias: "[Porch] Light On (by input_boolean)"
|
|
initial_state: "true"
|
|
trigger:
|
|
- platform: state
|
|
entity_id: input_boolean.porch_light_state
|
|
to: "on"
|
|
action:
|
|
- service: scene.turn_on
|
|
data_template:
|
|
entity_id: scene.porch_{{ states.input_text.porch_last_scene.state | replace(' ', '_') | lower | string }}
|
|
transition: 2.5
|
|
|
|
- alias: "[Porch] Light Off (by input boolean)"
|
|
initial_state: "true"
|
|
trigger:
|
|
- platform: state
|
|
entity_id: input_boolean.porch_light_state
|
|
to: "off"
|
|
action:
|
|
- service: scene.turn_on
|
|
data_template:
|
|
entity_id: scene.porch_off
|
|
transition: 2.5
|