Update blueprints/automations/bzo_climate.yaml

reverted single command to unit
This commit is contained in:
2025-07-31 08:22:52 +03:00
parent 2a1bb0a521
commit 6f7514f145

View File

@@ -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