We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddad726 commit f48895fCopy full SHA for f48895f
wled00/pin_manager.cpp
@@ -217,7 +217,17 @@ String PinManagerClass::getPinSpecialText(int gpio) { // special purpose PIN in
217
if (gpio == FLD_PIN_RESET) return(F("(default) 4lines disp. RESET"));
218
#endif
219
220
-
+ #ifdef USERMOD_DALLASTEMPERATURE
221
+ #ifdef USERMOD_DHT_PIN
222
+ if (gpio == USERMOD_DHT_PIN) return(F("(default) DHT temperature pin"));
223
+ #else
224
+ #ifdef ARDUINO_ARCH_ESP32
225
+ if (gpio == 21) return(F("(default) DHT temperature pin"));
226
227
+ if (gpio == 4) return(F("(default) DHT temperature pin"));
228
+ #endif
229
230
231
#if defined(USERMOD_MPU6050_IMU)
232
#ifdef MPU6050_INT_GPIO
233
if (gpio == MPU6050_INT_GPIO) return(F("(default) mpu6050 INT pin"));
0 commit comments