From 52dc7d3b7206c0c568cdb68ed112aad23fad8991 Mon Sep 17 00:00:00 2001 From: bzoicas Date: Mon, 17 Nov 2025 09:53:29 +0200 Subject: [PATCH] Update blueprints/automations/bzo_climate.yaml typo --- blueprints/automations/bzo_climate.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/blueprints/automations/bzo_climate.yaml b/blueprints/automations/bzo_climate.yaml index 95ae71e..177986c 100644 --- a/blueprints/automations/bzo_climate.yaml +++ b/blueprints/automations/bzo_climate.yaml @@ -608,21 +608,21 @@ action: - condition: template value_template: "{{ temp_delta >= temp_delta_high }}" sequence: - - service: "{{ climate_fan_mode }}" + - service: climate.set_fan_mode target: entity_id: !input ac_unit data: - fan_mode: high + fan_mode: "{{ climate_fan_mode }}" # Low intensity - conditions: - condition: template value_template: "{{ temp_delta >= temp_delta_low }}" sequence: - - service: "{{ climate_fan_mode }}" + - service: climate.set_fan_mode target: entity_id: !input ac_unit data: - fan_mode: mid + fan_mode: "{{ climate_fan_mode }}" # Auto intensity (default) default: - service: climate.set_fan_mode