From ad810b1a83a218712645eb867fb95d68fcac7441 Mon Sep 17 00:00:00 2001 From: GrKoR Date: Sat, 4 Feb 2023 02:29:47 +0400 Subject: [PATCH] =?UTF-8?q?fix:=C2=A0bug=20with=20int=20part=20of=20target?= =?UTF-8?q?=20temperature?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/aux_ac/aux_ac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/aux_ac/aux_ac.h b/components/aux_ac/aux_ac.h index 47eefe9..ea7b4b6 100644 --- a/components/aux_ac/aux_ac.h +++ b/components/aux_ac/aux_ac.h @@ -384,7 +384,7 @@ struct packet_small_info_body_t { // байт 10 пакета: https://github.com/GrKoR/AUX_HVAC_Protocol#packet_cmd_11_b10 //uint8_t target_temp_int_and_v_louver; uint8_t v_louver : 3; - bool target_temp_int : 5; + uint8_t target_temp_int : 5; // байт 11 пакета: https://github.com/GrKoR/AUX_HVAC_Protocol#packet_cmd_11_b11