Page 1 of 1

ESP32 Onboard LED Not Blinking

Posted: Sat Jun 29, 2019 10:26 pm
by tomcat2900
Hello !
I have a ESP32 BOARD DEVKIT V4 (ESP32-WROVER-IB (8 MB flash) ESP32-DEVKITC-VIB)
This code for blinking onboard LED doesnt work
/*
* https://circuits4you.com
* ESP32 LED Blink Example
* Board ESP23 DEVKIT V1
*
* ON Board LED GPIO 2
*/

#define LED 2

void setup() {
// Set pin mode
pinMode(LED,OUTPUT);
}

void loop() {
delay(500);
digitalWrite(LED,HIGH);
delay(500);
digitalWrite(LED,LOW);
}

Can you tell me why ?
Thank You !

Re: ESP32 Onboard LED Not Blinking

Posted: Mon Jul 01, 2019 12:53 am
by mikemoy
This code for blinking onboard LED doesnt work
Because there is only one led on the board that that is for 5v power.
There is no user led.

https://dl.espressif.com/dl/schematics/ ... v4-sch.pdf

Re: ESP32 Onboard LED Not Blinking

Posted: Mon Jul 01, 2019 10:18 am
by tomcat2900
Thank You Very Much !