almost tiny update (GPIO info)

show special Info for WLED STATUSLED, and DMX hardcoded GPIO
This commit is contained in:
Frank
2022-12-02 00:37:30 +01:00
parent fb45243023
commit aa5169b5f5

View File

@@ -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