From fcf77c81ca41afbe01f35c4a0b182ab99a1d60af Mon Sep 17 00:00:00 2001 From: ElVit <54866762+ElVit@users.noreply.github.com> Date: Wed, 14 Jan 2026 10:58:29 +0100 Subject: [PATCH] Update decode.h Added 1 new model --- components/panasonic_heatpump/decode.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/panasonic_heatpump/decode.h b/components/panasonic_heatpump/decode.h index 9aa3b21..b7d66ad 100644 --- a/components/panasonic_heatpump/decode.h +++ b/components/panasonic_heatpump/decode.h @@ -7,7 +7,7 @@ #define RESPONSE_MSG_SIZE 203 #endif #ifndef NUMBER_OF_MODELS -#define NUMBER_OF_MODELS 57 +#define NUMBER_OF_MODELS 58 #endif namespace esphome { @@ -68,7 +68,7 @@ class PanasonicDecode { static const constexpr char* const ExtPadHeaterType[] = {"3", "Disabled", "Type-A", "Type-B"}; static const constexpr char* const BivalentMode[] = {"3", "Alternative", "Parallel", "Advanced Parallel"}; static const constexpr char* const ModelNames[] = { - "57", // string representation of number of known models (last model number + 1) + "58", // string representation of number of known models (last model number + 1) "WH-MDC05H3E5", // 0 "WH-MDC07H3E5", // 1 "IDU:WH-SXC09H3E5, ODU:WH-UX09HE5", // 2 @@ -126,6 +126,7 @@ class PanasonicDecode { "IDU:WH-ADC0916H9E8, ODU:WH-UX09HE8", // 54 "IDU:WH-ADC0316M9E8AN2, ODU:WH-WXG09ME8", // 55 "IDU:WH-SDC0309K3E5, ODU:WH-UDZ07KE5", // 56 + "IDU:WH-ADC0309K3E5AN, ODU:WH-UDZ05KE5", // 57 }; };