Search found 1 match
- Mon Aug 28, 2023 10:00 pm
- Forum: Hardware
- Topic: ESP32 not booting until reset button pressed
- Replies: 16
- Views: 25712
Re: ESP32 not booting until reset button pressed
I'm having a similar issue than the other folks. This is the circuit of my custom board: Circuit.png And this is the Arduino IDE code to show the problem: #define GENERIC_USE_LED 27 void setup() { pinMode(GENERIC_USE_LED, OUTPUT); digitalWrite(GENERIC_USE_LED, HIGH); } Whenever an external CH340 usb...