Introduction to ESP32 Board - Getting Started ( Step by Step)

preview_player
Показать описание
The ESP32 is a very powerful microcontroller with integrated WiFi and Bluetooth., a dual-core CPU, and a lot of memory.
In this video, I’ll show you how to set up the Arduino IDE for the ESP32 and then we’ll try out our first blink sketch.

► Get your first ESP32 board today and start exploring the world of IoT:

--------------------------------------------------------------------

● Board Manager URL

--------------------------------------------------------------------
✅ My current Productivity Setup 👇:

--------------------------------------------------------------------

FOLLOW ME:
--------------------------------------------------------------------

► All content by Enjoy Mechatronics is 100% free. I believe that education should be freely available to everyone.
Рекомендации по теме
Комментарии
Автор

Thank you for this video. I have been programming Arduino off and on for quite a number of years now. Recently my projects got bigger and more useful. Therefore I switched to ESP32 for the extra functionality but I ran into trouble getting it running.
Your video was one step in the chain of things that helped me get me going.
Thank you.

ctrl-del
Автор

Awesome and super helpful video. Thanks for explaining the SI Labs driver install info as well. Thank you!!

tedk
Автор

Hello! Thank you very much, you helped me to create my first project. Without your help, it could take a century to get up and running for me myself:) I wish you success and good health. Will continue learning by watching your videos.

azv
Автор

Well done! I am totally new to this. I found your instructions super easy to understand.

danpro
Автор

Very good video, your explanation is very clear. Thanks

osvaldo
Автор

Very clear instructions and perfect explanation for beginners. Thank you

onezerodev
Автор

Love your videos. Thank you. Please don't stop.

mrkewi
Автор

THANK YOU SO VERY MUCH SIR!!! This has been so very helpful and inspiring. It has given me the motivation to start experimenting with the ESP32. I didnt want to use the Arduino IDE but since everyone was saying you need to start with Arduino I thought ok after watching your video. Looking forward to trying out the next experiments. Have an absolutely wonderful day my friend.

buffplums
Автор

Thank You, very informative and helpful

kevintsilvers
Автор

damn tutorial and troubleshooting in one, this is very good!

therealTOTOfan
Автор

I have lots of bits and bobs lying around ESP32 nanos uno`s lcd`s oled`s etc to name a few lol and trying to learn C++ (maybe Rust later if i get good lol) . The way you teach this helps me so much and i want to say thanks :) playing with the code by making guesses as you see here also helps me learn better and learn to code keeping lines down to minimal ...Thanks again

int ledPin =2;
int dt =50;
void setup() {
// put your setup code here, to run once:
pinMode(ledPin, OUTPUT);

}

void loop() {
// put your main code here, to run repeatedly:
delay(dt);
digitalWrite(ledPin, HIGH);
delay(dt);
digitalWrite(ledPin, LOW);
}
i love it 😁😁😁

Nigel
Автор

Excellent tutorial! I've been a software developer for over 32 years. I started with Arduino last year and I love it. Then I saw the ESP32. OMG, I have to have one, but what can I do with it? That's where your tutorials come in. Thank you so much for showing all the little settings and driver loads.😶‍🌫

GaryParkin
Автор

My COM port is not showing up in the ide. I installed the correct driver for my mac computer. what could be the issue?

TheHottrod
Автор

How do I know which driver (cp2102 from silicon lab) is need my window 11.

kuntalghoshee
Автор

How do I get com port for ESP32 espressif for windows 11?
I tried CP210X universal Windows Driver V11.3.0 6/24/2023
I use Arduino IDE 2.2.1 with 115200 baud, but it didn’t work.
The following works fine, Arduino UNO, UNO R4 WiFi and UNO R2 WiFi
Please help.

bzwqdjz
Автор

cannot find the esp32 board manager in the software pls help>>

evo
Автор

can you help me to get the link when i add the link to preferences Arduino give me message no board select

bknalrawi
Автор

Why should I press the boot button while uploading code?

irfanbasheer
Автор

i keep on getting the same msg that compilation failed. status 1 exit, despite selecting the correct board and everything

adnanafzal
Автор

For me it's still showing failed to upload: uploading error:exit status 2

IbrahimDhanishJ