From 575a7531c52461609f462886a766b1f9a7c62783 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 11 Sep 2022 01:01:27 +0200 Subject: [PATCH] another "TX" changed in hardwareTX --- wled00/ir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/ir.cpp b/wled00/ir.cpp index e55cec781..4ab280dc7 100644 --- a/wled00/ir.cpp +++ b/wled00/ir.cpp @@ -728,7 +728,7 @@ void handleIR() { if (results.value != 0) // only print results if anything is received ( != 0 ) { - if (!pinManager.isPinAllocated(TX) || pinManager.getPinOwner(TX) == PinOwner::DebugOut) //GPIO 1 - Serial TX pin + if (!pinManager.isPinAllocated(hardwareTX) || pinManager.getPinOwner(hardwareTX) == PinOwner::DebugOut) // Serial TX pin (GPIO 1 on ESP32 and ESP8266) Serial.printf_P(PSTR("IR recv: 0x%lX\n"), (unsigned long)results.value); } decodeIR(results.value);