initial commit

This commit is contained in:
2025-02-07 12:46:24 -05:00
commit 8dfb36a3f1
183 changed files with 9212 additions and 0 deletions

View File

@ -0,0 +1,24 @@
---
- alias: "[Bedroom Max] Light On (by input_boolean)"
initial_state: "true"
trigger:
- platform: state
entity_id: input_boolean.bedroom_max_light_state
to: "on"
action:
- service: scene.turn_on
data_template:
entity_id: scene.bedroom_max_{{ states.input_text.bedroom_max_last_scene.state | replace(' ', '_') | lower | string }}
transition: 2.5
- alias: "[Bedroom Max] Light Off (by input boolean)"
initial_state: "true"
trigger:
- platform: state
entity_id: input_boolean.bedroom_max_light_state
to: "off"
action:
- service: scene.turn_on
data_template:
entity_id: scene.bedroom_max_off
transition: 2.5