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 !
ESP32 Onboard LED Not Blinking
Re: ESP32 Onboard LED Not Blinking
Because there is only one led on the board that that is for 5v power.This code for blinking onboard LED doesnt work
There is no user led.
https://dl.espressif.com/dl/schematics/ ... v4-sch.pdf
-
- Posts: 8
- Joined: Tue Jun 25, 2019 11:24 pm
Re: ESP32 Onboard LED Not Blinking
Thank You Very Much !
Who is online
Users browsing this forum: No registered users and 114 guests