Update HA version to 2025.11.3 and remove outdoor pool lights from various configurations and automations. This includes updates to configuration files, light groups, and automation scripts to enhance clarity and maintainability. Cleaned up all the spook errors. (most of them)
parent
64713fd3f0
commit
00190bbafb
@ -1 +1 @@
|
||||
2025.11.2
|
||||
2025.11.3
|
||||
@ -1,40 +0,0 @@
|
||||
#-------------------------------------------
|
||||
# When the Sliding door opens, at night, turn on Pool deck lights.
|
||||
# @CCOSTAN
|
||||
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
||||
#-------------------------------------------
|
||||
|
||||
- alias: Pool Deck light helper
|
||||
id: 9521d521-00dc-4116-b467-5150735fcff9
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: binary_sensor.MCU2_GPIO12
|
||||
to: 'on'
|
||||
for: '00:3:00'
|
||||
- platform: state
|
||||
entity_id: sun.sun
|
||||
to: 'below_horizon'
|
||||
from: 'above_horizon'
|
||||
|
||||
condition:
|
||||
- condition: state
|
||||
entity_id: sun.sun
|
||||
state: 'below_horizon'
|
||||
- condition: state
|
||||
entity_id: binary_sensor.MCU2_GPIO12
|
||||
state: 'on'
|
||||
- condition: numeric_state
|
||||
entity_id: sensor.pirateweather_temperature
|
||||
below: 80
|
||||
|
||||
action:
|
||||
- service: switch.turn_on
|
||||
entity_id: switch.back_landscaping
|
||||
- service: light.turn_on
|
||||
entity_id: light.outdoor_pool_lights
|
||||
data:
|
||||
color_temp: 369
|
||||
- wait_template: >-
|
||||
{{ states.binary_sensor.MCU2_GPIO12.state == 'off' }}
|
||||
- service: light.turn_off
|
||||
entity_id: light.outdoor_pool_lights
|
||||
@ -1,8 +1,6 @@
|
||||
doors:
|
||||
name: Doors
|
||||
entities:
|
||||
- binary_sensor.hallway_linen
|
||||
- binary_sensor.hallway_pantry
|
||||
# - binary_sensor.kitchen_door
|
||||
- binary_sensor.MCU2_GPIO12 # Main Slider
|
||||
- binary_sensor.MCU3_Light # Alarm Door
|
||||
|
||||
Loading…
Reference in new issue