🚗 Obstacle Avoiding Robot

A smart robotic car that avoids obstacles using an Arduino and sensors.

📺 Watch the 🎥 Video Demo

Robot Image

🔧 Components Required

ComponentQuantity
Arduino Uno1
Ultrasonic Sensor (HC-SR04)1
Servo Motor (SG90)1
Motor Driver Module (L298N)1
DC Motors (For Wheels)4
Chassis with Wheels1 Set
12V Battery Pack1
Jumper WiresAs needed

⚡ Wiring Connections

1️⃣ Ultrasonic Sensor to Arduino

HC-SR04 PinArduino Pin
VCC5V
GNDGND
TRIGDigital Pin 9
ECHODigital Pin 10

2️⃣ Servo Motor to Arduino

Servo PinArduino Pin
VCC5V
GNDGND
SignalDigital Pin 6

3️⃣ Motor Driver (L298N) to Arduino

L298N PinArduino Pin
VCC12V Battery
GNDGND
IN1Digital Pin 5
IN2Digital Pin 4
IN3Digital Pin 3
IN4Digital Pin 2
ENAPWM Pin 9
ENBPWM Pin 10

4️⃣ DC Motors to L298N

MotorL298N Output
Left MotorOUT1 & OUT2
Right MotorOUT3 & OUT4

How It Works

The robot uses an ultrasonic sensor to detect obstacles in its path. The Arduino sends a trigger signal to the sensor, which then emits sound waves. The sensor calculates the distance to an obstacle by measuring how long it takes for the sound waves to return. If an obstacle is detected within a certain range, the Arduino controls the motor driver to stop the wheels and/or steer the robot away from the obstacle.

Back to Home