ESP32: Blink the LED (ESP32 + Arduino series)

preview_player
Показать описание
It's the "Hello World" of IoT projects: blink an LED. Here, I'll show you how to blink the built-in LED of most ESP32 development boards. Of course, by using Arduino framework.

⚡️Other videos in this series:

(Everything you need to know about programming the ESP32 by using the Arduino Framework)

🌍 Social

Рекомендации по теме
Комментарии
Автор

WOW....you have just saved my day! Followed the steps and my board is blinking. I now know its connected and takes programs. A++ for this video. Thanks a bunch

captmcloven
Автор

Thx, just starting with ESP. Helped a lot! Deserves a like :D

tomaskollar
Автор

Thank you. Just what I needed to figure out pinouts.

markedwards
Автор

After spending hours to pull my hair, I realized the cable I was using was not able to transfer data and was not visible as /dev/ttyUSB0. Make sure you have a correct cable...

antoinekeller
Автор

Thank you for the tutorial video!

 For 'ESP-WROOM-32', I had to keep the 'boot' button on my board pressed while flashing the program; otherwise the flashing process gave an error "Failed to connect to ESP32".

Youngduck
Автор

no, it didnt work, in my case (esp32 wroom_v1)
this is what worked for me:
int LED_BUILTIN = 2;
void setup() {
pinMode (LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}

funckyjunky
Автор

What do you mean with HIGH to turn off but LOW to turn on? I'm confused and not sure if i should switch to ESP if it is this unintuitive...

itsdarkoboy
Автор

How do I make it stop it just keeps blinking

komalshah
Автор

bro u sayed turn off and you used high -_-

moatez