Beginners ESP32 Tutorial
Circuit Diagram:-
NOTE:-
If Your ESP32 Board is not showing then try this wayπ
● Open Arduino IDE Software.
● Go To File.
● Now You Can See Preferences , Click On Preferences.
● You will get Additional Boards Manager URLs :
● There Add This Linkπ https://dl.espressif.com/dl/package_esp32_index.json
● Now Click Ok .
● Now it Show ESP32 Board.
● Install It.
For More Watch This Video:-
LED Basic Blink Code:-
#define led 15
void setup()
{
pinMode(led,OUTPUT);
}
void loop()
{
digitalWrite(led,HIGH);
delay(500);
digitalWrite(led,LOW);
delay(500);
}
THANKYOU FOR WATCHING...


Comments
Post a Comment