diff --git a/blueprints/automations/bzo_climate.yaml b/blueprints/automations/bzo_climate.yaml index 74b3031..5f605bf 100644 --- a/blueprints/automations/bzo_climate.yaml +++ b/blueprints/automations/bzo_climate.yaml @@ -337,12 +337,17 @@ {% set temp = state_attr(climate, 'temperature') | float(999) %} {{ state != hvac_mode or fan != fan_mode or (temp | round(1)) != (adjusted_temp | round(1)) }} - - service: climate.set_hvac_mode + - service: climate.set_temperature target: entity_id: !input climate_entity data: temperature: "{{ adjusted_temp | float }}" - hvac_mode: "{{ hvac_mode }}" + hvac_mode: "{{ hvac_mode }}" + + - service: climate.set_fan_mode + target: + entity_id: !input climate_entity + data: fan_mode: "{{ fan_mode }}" - service: logbook.log