From e7e523a92f80a0909290343f946f3f99aa6ff084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Fri, 9 Jun 2023 18:37:31 +0200 Subject: [PATCH] =?UTF-8?q?IRac::isProtocolSupported()=20=E2=80=94=20do=20?= =?UTF-8?q?not=20list=20WHIRLPOOL=5FAC=20unconditionally=20as=20supported?= =?UTF-8?q?=20protocol?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is reported as such when in Tasmota the command IRHVAC {"Vendor":"ABC"} is sent. --- src/IRac.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/IRac.cpp b/src/IRac.cpp index adfa87f64..fb5b29209 100644 --- a/src/IRac.cpp +++ b/src/IRac.cpp @@ -371,7 +371,9 @@ bool IRac::isProtocolSupported(const decode_type_t protocol) { #if SEND_YORK case decode_type_t::YORK: #endif +#if SEND_WHIRLPOOL_AC case decode_type_t::WHIRLPOOL_AC: +#endif return true; default: return false;