From d6e1e3d2770ee77bc614286c3e564b51beda8cbf Mon Sep 17 00:00:00 2001 From: Julian Tabel Date: Sat, 20 Jun 2026 19:20:32 +0200 Subject: [PATCH] Fix AC automation time gate and set explicit temperature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move time condition into turn-on branch only so the AC can still turn off after 22:00. Set target temperature to 16°C via climate.set_temperature. Co-Authored-By: Claude Sonnet 4.6 --- automations.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/automations.yaml b/automations.yaml index 45e05d0..e5ba2c3 100644 --- a/automations.yaml +++ b/automations.yaml @@ -113,21 +113,22 @@ - condition: state entity_id: input_boolean.ac_automation_enabled state: 'on' - - condition: time - after: 08:00:00 - before: '22:00:00' actions: - choose: - conditions: - condition: numeric_state entity_id: sensor.thermometer_buro_temperature_2 above: 27 + - condition: time + after: 08:00:00 + before: '22:00:00' sequence: - target: entity_id: climate.echos_mobile_klimaanlage_mit_wifi data: hvac_mode: cool - action: climate.set_hvac_mode + temperature: 16 + action: climate.set_temperature - target: entity_id: input_boolean.ac_auto_active action: input_boolean.turn_on