From c314ff2aed94d6119ffee8e63fbaa6243da809da Mon Sep 17 00:00:00 2001 From: Carlo Costanzo Date: Fri, 13 Jun 2025 10:00:11 -0400 Subject: [PATCH] =?UTF-8?q?Move=20automation=20to=20prevent=20upstairs=20N?= =?UTF-8?q?est=20temperature=20from=20dropping=20below=2076=C2=B0F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/automation/Speech/nest.yaml | 15 +-------------- config/packages/climate.yaml | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/config/automation/Speech/nest.yaml b/config/automation/Speech/nest.yaml index 1c7da52c..b9394a05 100755 --- a/config/automation/Speech/nest.yaml +++ b/config/automation/Speech/nest.yaml @@ -18,19 +18,6 @@ NestStatus: "The {{ trigger.entity_id.split('.')[1].split('_')[0]}} {{ trigger.entity_id.split('.')[1].split('_')[1]}} has now been turned on for {{(trigger.to_state.state)}}." call_window_check: 1 -- alias: 'Prevent Upstairs Nest Below 76' - id: 7812fdaf-a3f8-498b-8f07-28e977e528ff - trigger: - - platform: numeric_state - entity_id: climate.upstairs - attribute: temperature - below: 76 - action: - - delay: - minutes: 3 - - service: climate.set_temperature - data: - entity_id: climate.upstairs - temperature: 77 + diff --git a/config/packages/climate.yaml b/config/packages/climate.yaml index 66a46a1b..6099ab6a 100644 --- a/config/packages/climate.yaml +++ b/config/packages/climate.yaml @@ -79,3 +79,18 @@ automation: value2: "Runtime has exceeded 450 hours. Last changed {{ ((now() - states.input_datetime.upstairs_last_filter_change.last_changed).total_seconds() / 86400) | round(0) }} days ago." who: "Carlo" group: "maintenance" + + - alias: 'Prevent Upstairs Nest Below 76' + id: 7812fdaf-a3f8-498b-8f07-28e977e528ff + trigger: + - platform: numeric_state + entity_id: climate.upstairs + attribute: temperature + below: 76 + action: + - delay: + minutes: 3 + - service: climate.set_temperature + data: + entity_id: climate.upstairs + temperature: 77