Posts

Showing posts from June, 2026

Beginners ESP32 Tutorial

Image
  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...

How To Upload Code In Arduino Uno And Arduino Nano

Image
  Arduino Uno  Buy Link:- https://amzn.to/3Sd1BX5 Arduino Nano  Buy Link:- https://amzn.to/4a0Kv4N Basic Arduino Codes:- Servo Motor Test :- Connections: Servo Motor                      Arduino  Signal                                  D9 +ve                                       5v -ve                                        GND Code:- #include <Servo.h> Servo myServo; void setup() {   myServo.attach(9); // Attach servo to pin D9 } void loop() {   myServo.write(0); // Move to 0°   delay(1000);   myServo.write(90); // Move to 90°   delay(1000);   myServo.write(180); // Move to 180°   delay(1000...