diff --git a/blueprints/automations/bzo_climate.yaml b/blueprints/automations/bzo_climate.yaml index d33c017..74b3031 100644 --- a/blueprints/automations/bzo_climate.yaml +++ b/blueprints/automations/bzo_climate.yaml @@ -337,17 +337,12 @@ {% 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_temperature + - service: climate.set_hvac_mode target: entity_id: !input climate_entity data: temperature: "{{ adjusted_temp | float }}" hvac_mode: "{{ hvac_mode }}" - - - service: climate.set_fan_mode - target: - entity_id: !input climate_entity - data: fan_mode: "{{ fan_mode }}" - service: logbook.log