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