Enhance recorder and climate configurations by adding new sensor exclusions and updating automation conditions. Excluded 'sensor.sun_next_*' in recorder.yaml and modified climate automation to use 'target_temp_high' for improved temperature control. Updated Garadget automation to refine state conditions for better home presence detection.

This commit is contained in:
Carlo Costanzo
2025-07-23 20:53:56 -04:00
parent a9c5e52671
commit 8c1f63cb68
3 changed files with 12 additions and 7 deletions

View File

@@ -153,7 +153,7 @@ automation:
trigger: trigger:
- platform: numeric_state - platform: numeric_state
entity_id: climate.downstairs entity_id: climate.downstairs
attribute: temperature attribute: target_temp_high
above: 76 above: 76
- platform: state - platform: state
entity_id: group.bed entity_id: group.bed
@@ -169,11 +169,14 @@ automation:
state: 'on' state: 'on'
- condition: numeric_state - condition: numeric_state
entity_id: climate.downstairs entity_id: climate.downstairs
attribute: temperature attribute: target_temp_high
above: 76 above: 76
- condition: state
entity_id: sun.sun
state: 'below_horizon'
action: action:
- service: climate.set_temperature - service: climate.set_temperature
data: data:
entity_id: climate.downstairs entity_id: climate.downstairs
temperature: 76 target_temp_high: 76

View File

@@ -93,7 +93,7 @@ automation:
- person.carlo - person.carlo
- person.stacey - person.stacey
- person.justin - person.justin
from: 'not_home' from: 'driving'
to: 'home' to: 'home'
condition: condition:
- condition: state - condition: state
@@ -102,6 +102,9 @@ automation:
- condition: state - condition: state
entity_id: group.bed entity_id: group.bed
state: 'off' state: 'off'
- condition: state
entity_id: group.family
state: 'home'
action: action:
- service: cover.open_cover - service: cover.open_cover
target: target:
@@ -131,7 +134,7 @@ automation:
entity_id: entity_id:
- person.carlo - person.carlo
- person.stacey - person.stacey
from: 'not_home' # from: 'driving'
to: 'home' to: 'home'
condition: condition:
- condition: state - condition: state

View File

@@ -45,6 +45,7 @@ exclude:
- sensor.*_last_boot - sensor.*_last_boot
- sensor.*_since - sensor.*_since
- sensor.*uptime* - sensor.*uptime*
- sensor.sun_next_*
- sensor.vpn_client_* - sensor.vpn_client_*
- switch.*_do_not_disturb_* - switch.*_do_not_disturb_*
- switch.*_repeat_switch - switch.*_repeat_switch
@@ -84,8 +85,6 @@ exclude:
- sensor.rachio_watering_time - sensor.rachio_watering_time
- sensor.stacey_iphone11_activity - sensor.stacey_iphone11_activity
- sensor.stacey_iphone11_audio_output - sensor.stacey_iphone11_audio_output
- sensor.sun_next_dawn
- sensor.sun_next_noon
- sensor.time - sensor.time
- switch.bear_stone - switch.bear_stone
- switch.alarm_panel_1_screensaver - switch.alarm_panel_1_screensaver