From aa5169b5f5b4e92d4dcb113485958c150f55cec6 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 2 Dec 2022 00:37:30 +0100 Subject: [PATCH] almost tiny update (GPIO info) show special Info for WLED STATUSLED, and DMX hardcoded GPIO --- wled00/pin_manager.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wled00/pin_manager.cpp b/wled00/pin_manager.cpp index bd072aa8..2fad2028 100644 --- a/wled00/pin_manager.cpp +++ b/wled00/pin_manager.cpp @@ -88,8 +88,13 @@ String PinManagerClass::getPinSpecialText(int gpio) { // special purpose PIN in if (gpio == LED_BUILTIN) return(F("might be onboard LED")); #endif #if defined(STATUSLED) + if (gpio == STATUSLED) return(F("WLED Status LED")); + #endif + #ifdef WLED_ENABLE_DMX + if (gpio == 2) return(F("hardcoded DMX output pin")); #endif + // Not-OK PINS if (!isPinOk(gpio, false)) return(F("")); #if 0