From 9d2bd07ecbf2ce7bece1c0485f2fbd9d80572291 Mon Sep 17 00:00:00 2001 From: ElVit <54866762+ElVit@users.noreply.github.com> Date: Sat, 19 Jul 2025 08:45:54 +0200 Subject: [PATCH] panasonic_heatpump.cpp aktualisieren Fixed issue in function 'send_request()' (fixes #11) --- components/panasonic_heatpump/panasonic_heatpump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/panasonic_heatpump/panasonic_heatpump.cpp b/components/panasonic_heatpump/panasonic_heatpump.cpp index b1c86d4..4f922d1 100644 --- a/components/panasonic_heatpump/panasonic_heatpump.cpp +++ b/components/panasonic_heatpump/panasonic_heatpump.cpp @@ -193,7 +193,7 @@ namespace esphome break; case RequestType::POLLING_EXTRA: if (this->log_uart_msg_) PanasonicHelpers::log_uart_hex(UART_LOG_TX, PanasonicCommand::PollingExtraMessage, DATA_MESSAGE_SIZE, ','); - this->write_array(PanasonicCommand::PollingMessage, DATA_MESSAGE_SIZE); + this->write_array(PanasonicCommand::PollingExtraMessage, DATA_MESSAGE_SIZE); this->flush(); break; };