Posts

How To Upload Code In ESP8266 Board

Image
ESP8266 Board Pack URL: https://arduino.esp8266.com/stable/package_esp8266com_index.json Circuit Diagram: Basic LED Blink Code: void setup(){     pinMode(D4,OUTPUT);     pinMode(D5,OUTPUT); } void loop(){     pinMode(D4,HIGH);     delay(1000);     pinMode(D4,LOW);     delay(1000);     pinMode(D5,HIGH);     delay(500);     pinMode(D5,LOW);     delay(500); } Please Subscribe To My YouTube Channel 👇 https://youtube.com/@ayushrcgadgetcreator?si=S-N5WAB-DAj_3w8t Thankyou...

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

RC Bluetooth Car

Image
 RC Bluetooth Car      Components Required: 1)  Arduino Nano       Buy Link :- https://amzn.to/4u65iuK 2)  HC-05 Bluetooth        Buy Link:-  https://amzn.to/3ScDZ4F 3)  L298N motor driver        Buy Link:-  https://amzn.to/3SdwASE 4)  5v Buzzer        Buy Link:- https://amzn.to/436tW3E 5)  5mm LED        Buy Link:- https://amzn.to/4udveEZ 6)  Breadboard        Buy Link:- https://amzn.to/3PylWoX 7)  Lithium Battery        Buy Link:- https://amzn.to/4xj2QEn 8)  Battery Holder       Buy Link:- https://amzn.to/4u2vhTX Connection Diagram:                                                    LED Connection          ...

LED'S Blink Using Arduino Nano Beginners Project

Image
  Code:- // 10 LED Pattern Display - Arduino Nano // Uses pins 4-13 int ledPins[] = {4, 5, 6, 7, 8, 9, 10, 11, 12, 13}; int numLeds = 10; void setup() {   // Initialize all LED pins as outputs   for (int i = 0; i < numLeds; i++) {     pinMode(ledPins[i], OUTPUT);   }      // Quick startup test - all LEDs blink once   allLedsOn();   delay(500);   allLedsOff();   delay(500); } void loop() {   // Pattern 1: Running Light (Left to Right)   runningLight(100);      // Pattern 2: Running Light (Right to Left)   runningLightReverse(100);      // Pattern 3: Center Out   centerOut(150);      // Pattern 4: Center In   centerIn(150);      // Pattern 5: Random Blink   randomBlink(50, 200);      // Pattern 6: Wave Pattern   wavePattern(80);      // Pattern 7: Binary Counter   binaryCounter(250);  ...

Half Wave Rectifier

Image
  Half Wave Rectifier Circuit Diagram:- Half Wave Rectifier Project Buy Link:- https://amzn.to/4sOMU9X COMPONENTS Buy Links :- Transformer (220v to6-0-6v) :- https://amzn.to/4ccV45b Diode 1N4007 :- https://amzn.to/41jkRDB Capacitor (2200uf 16v) :- https://amzn.to/4c3iaLd Resistor (470 ohm) :- https://amzn.to/4t008RA LED bulb (5mm) :- https://amzn.to/4mfEndR Push button :- https://amzn.to/4vuv4Lt Video Link:- THANKYOU FOR VISIT...

EMO Robot Using Arduino Nano

Image
 EMO ROBOT PROJECT  ● Electronics Components Required:- 1. Arduino Nano  Arduino Nano Buy Link:  https://amzn.to/47NXqpw 2. Oled Display   Oled Display Buy Link: https://amzn.to/47QUYi1 3. Servo Motor  Servo Motor Buy Link:  https://amzn.to/3NzG8FU 4. Touch Sensor  Touch Sensor Buy Link: https://amzn.to/4t8GKS6 5. Switch   6. Lithium Ion Battery   7. Battery Holder  8. Breadboard   Connections:-       Touch sensor  connection              Oled Display connection                Servo Motor connection  Circuit Diagram:-   Full Circuit Diagram : ● Library Used:- Adafruit_GFX.h Adafruit_SSD1306.h ● Code:- #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include <Servo.h> // ---------- OLED ---------- #define SCREEN_WIDTH 128 #define SCREEN_HEIGHT 64 Adafruit_SSD1306 display(...

KIKIBOT Robo Car ESP32 Project

 How To Make "KikiBot" Robot Car Commands:- forward backward left right smile cry ESP32 Code:- #include <BluetoothSerial.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> BluetoothSerial SerialBT; #define SCREEN_WIDTH 128 #define SCREEN_HEIGHT 64 Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1); // Motor Pins #define IN1 27 #define IN2 26 #define IN3 25 #define IN4 33 // Ultrasonic #define trigPin 5 #define echoPin 18 // Mic #define micPin 34 String command; // ---------- MOTOR FUNCTIONS ---------- void forward() {   digitalWrite(IN1,HIGH); digitalWrite(IN2,LOW);   digitalWrite(IN3,HIGH); digitalWrite(IN4,LOW); } void backward() {   digitalWrite(IN1,LOW); digitalWrite(IN2,HIGH);   digitalWrite(IN3,LOW); digitalWrite(IN4,HIGH); } void left() {   digitalWrite(IN1,LOW); digitalWrite(IN2,HIGH);   digitalWrite(IN3,HIGH); digitalWrite(IN4,LOW); } void right() {   digitalWrite(IN1,HIGH); digitalWrite(IN2,LOW...

SMART IRRIGATION FOR FLYOVER

Image
 Smart Irrigation For Flyover  Circuit Diagram : COMPONENTS REQUIRED: 1. Soil Moisture Sensor  2.  Relay Module  3. DC Water Pump Motor  4. IC 7805  5. 9v Battery  6. Switch  Connections: Soil Sensor            Breadboard           Relay Module  VCC                               +                                   VCC    GND                              -                                    GND  IN                                        ...

BASIC SERVO MOTOR TEST

Image
  How To Test Survo Motor Using Arduino Uno  Connections:  Survo Motor pin              Arduino pin  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); } Circuit Diagram: Thankyou...