You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
######################################################################
|
|
# @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
|