Beginners ESP32 Tutorial
Circuit Diagram:- NOTE:- https://dl.espressif.com/dl/package_esp32_index.json 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...