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,34 @@
---
- id: garage_alert_on_on_door_is_moving
alias: '[Garage] Alert ON on Cover Moves'
initial_state: 'true'
trigger:
- platform: state
entity_id: cover.garage_gate
to: 'opening'
- platform: state
entity_id: cover.garage_gate
to: 'closing'
action:
- service: lifx.effect_pulse
data:
entity_id: light.garage_gate_01
brightness: 255
rgb_color: [255, 0, 0]
mode: strobe
cycles: 150
- id: garage_alert_off_on_door_is_stopped
alias: '[Garage] Alert OFF on Cover Stopes'
initial_state: 'true'
trigger:
- platform: state
entity_id: cover.garage_gate
to: 'open'
- platform: state
entity_id: cover.garage_gate
to: 'closed'
action:
- service: lifx.effect_stop
data:
entity_id: light.garage_gate_01