I am using ESP32 SOLO-1 esp module with custom board
I selected ESP32 Dev Module ( Board ) during upload code using Arduino IDE
Following code is used to blink the LED that connected to pin number GPIO 23 and GPIO17
Code successfully uploaded but LED does not blinking
Reset pin is working
Also pin 17 is normally used for a secondary serial port with the ESP32's Arduino core.
Regarding GPIO_NUM_23 if you are planning on adding a SPI device this pin is used, under the Arduino Core, as SPI_MOSI.
For blinking and LED use the internal LED normally built into a ESP32 developer module on GPIO_NUM_2. GPIO_NUM_0, 4, 5, 15,14,27, 26, 25 are good general purpose GPIO pins.
Even though the max current per GPIO pin for the ESP32 is 40mA it is recommended that no more then 20mA per GPIO pin is used.
If there was no current limit resistor, I use 330 ohm or larger, then you may have destroyed 2 GPIO pins in the least.
if your problem was solved, do a kindness to everyone on the forum, especially to those who helped you.
Write [Solved] before your topic title, so if someone searches and finds your topic, they'll know what the solution looks like.
And if it was solved by some help, please tick tick Solution box, the one that best describes your solution.