From 043eefdf4bc6656e3f548f70886a28f8ebc4a42c Mon Sep 17 00:00:00 2001 From: ElVit Date: Wed, 16 Jul 2025 16:17:43 +0200 Subject: [PATCH] Added support for extra query (fixes #11) --- components/panasonic_heatpump/helpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/components/panasonic_heatpump/helpers.cpp b/components/panasonic_heatpump/helpers.cpp index 6e44b85..81c00fb 100644 --- a/components/panasonic_heatpump/helpers.cpp +++ b/components/panasonic_heatpump/helpers.cpp @@ -24,6 +24,7 @@ namespace esphome break; case 0x71: msgType = "polling_" + msgType; + if (data[3] == 0x21) msgType = "extra_" + msgType; break; case 0xF1: msgType = "command_" + msgType;