From d637260dc3d729d50d256b21564c8c8ea486a087 Mon Sep 17 00:00:00 2001 From: ladyada Date: Tue, 31 Dec 2024 16:42:49 -0500 Subject: [PATCH] typo fix --- wled00/pin_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/pin_manager.cpp b/wled00/pin_manager.cpp index 1dc14fbcf..1110ae0e4 100644 --- a/wled00/pin_manager.cpp +++ b/wled00/pin_manager.cpp @@ -217,7 +217,7 @@ bool PinManager::isPinOk(byte gpio, bool output) if (strncmp_P(PSTR("ESP32-U4WDH"), ESP.getChipModel(), 11) == 0) { // this chip has 4 MB of internal Flash and different packaging, so available pins are different! - if ((gpio == 1) || (gpio == 3) || ((gpio >= 6) && (gpio =< 8)) || + if ((gpio == 1) || (gpio == 3) || ((gpio >= 6) && (gpio <= 8)) || (gpio == 11) || (gpio == 16) || (gpio == 17) || (gpio == 20) || (gpio == 24) || ((gpio >= 28) && (gpio <= 31))) return false;