Files
Home-AssistantConfig/config/automation/garage_entry_light.yaml
Carlo Costanzo 0ee97c923d [codex] HA YAML DRY cleanup
- move joanna_send_telegram into config/script
- deduplicate Shutdown Helper light automation
- remove the duplicate Color Tornado action
- update package docs for the shared Telegram helper
2026-04-14 17:28:08 -04:00

52 lines
1.5 KiB
YAML
Executable File

######################################################################
# @CCOSTAN - Follow Me on X
# For more info visit https://www.vcloudinfo.com/click-here
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
# -------------------------------------------------------------------
# Garage Entry Lights - Hallway helper automations for the garage entry
# Turns the garage hallway helper on when the entry opens and back off after it closes.
# -------------------------------------------------------------------
# Notes: Garage doors themselves are managed in config/packages/garadget.yaml.
######################################################################
- alias: Garage Light Hallway Helper OPEN
id: 5ea2a2b5-e3de-4acd-823c-dac3eeaa6118
trigger:
- platform: state
entity_id: binary_sensor.mcu1_gpio12
to: 'on'
condition:
- condition: state
entity_id: light.garage_hallway
state: 'off'
action:
- service: light.turn_on
entity_id:
- light.garage_hallway
- alias: Garage Light Hallway Helper Closed
id: f6060cd7-add7-487f-9b2b-f7849db3b36d
mode: restart
trigger:
- platform: state
entity_id: binary_sensor.mcu1_gpio12
to: 'off'
for:
seconds: 15
condition:
- condition: state
entity_id: binary_sensor.mcu1_gpio12
state: 'off'
- condition: state
entity_id: light.garage_hallway
state: 'on'
action:
- service: light.turn_off
entity_id: light.garage_hallway