minor fix for 8266
small typo, resulting in "A0" listed twice in the pin info.
This commit is contained in:
@@ -144,7 +144,7 @@ String PinManagerClass::getPinSpecialText(int gpio) { // special purpose PIN in
|
|||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
// ESP 8266
|
// ESP 8266
|
||||||
if ((gpio == 0) || (gpio == 17)) return (F("analog-in (A0)")); // 17 seems to be an alias for "A0" on 8266
|
if ((gpio == A0) || (gpio == 17)) return (F("analog-in (A0)")); // 17 seems to be an alias for "A0" on 8266
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user