From 4fbf1d0e9ea9e9322ed1261fa8e98df567bf38fc Mon Sep 17 00:00:00 2001 From: nocci Date: Thu, 15 Jan 2026 16:07:24 +0100 Subject: [PATCH] blueprint.yaml aktualisiert --- blueprint.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/blueprint.yaml b/blueprint.yaml index 488c823..80f78ea 100644 --- a/blueprint.yaml +++ b/blueprint.yaml @@ -87,13 +87,13 @@ action: comfort_temperature: !input comfort_temp - variables: - forecast: "{{ state_attr(weather_entity, 'forecast') }}" - weather_temp: "{{ forecast[0].temperature if forecast and forecast|length > 0 else 15 }}" - is_summer: "{{ (weather_temp | float(15)) > (summer_threshold | float(25)) }}" - is_winter: "{{ (weather_temp | float(15)) < (winter_threshold | float(10)) }}" + weather_temp: '{{ state_attr(weather_entity, ''temperature'') | float(15) }}' + is_summer: "{{ weather_temp > summer_threshold }}" + is_winter: "{{ weather_temp < winter_threshold }}" is_vacation: "{{ states(vacation_entity) == 'on' }}" schedule_active: "{{ states(schedule_entity) == 'on' }}" + - choose: # Priorität 1: Sommer-Modus (Heizung aus) - conditions: