From 2a1bb0a52158baf1a65b4d09861f38a54e5cd0d5 Mon Sep 17 00:00:00 2001 From: bzoicas Date: Thu, 31 Jul 2025 07:46:38 +0300 Subject: [PATCH] Update blueprints/automations/bzo_climate.yaml fixed send only one command to ac --- blueprints/automations/bzo_climate.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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