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 ea608ce commit ac503efCopy full SHA for ac503ef
wled00/wled.cpp
@@ -343,6 +343,9 @@ void WLED::setup()
343
#ifdef ARDUINO_ARCH_ESP32
344
pinMode(hardwareRX, INPUT_PULLDOWN); delay(1); // suppress noise in case RX pin is floating (at low noise energy) - see issue #3128
345
#endif
346
+ #ifdef WLED_BOOTUPDELAY
347
+ delay(WLED_BOOTUPDELAY); // delay to let voltage stabilize, helps with boot issues on some setups
348
+ #endif
349
Serial.begin(115200);
350
#if !ARDUINO_USB_CDC_ON_BOOT
351
Serial.setTimeout(50); // this causes troubles on new MCUs that have a "virtual" USB Serial (HWCDC)
0 commit comments