SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1660
AUTONOMOUS NAVIGATION ROBOT
S. Senthilkumar1, R. Nithya2, P. Vaishali3, R. Valli4, G. Vanitha5, L. Ramachanndran6
1, 6 – Assistant Professor
2, 3, 4 & 5 – UG Scholars
Department of Electronics and Communication Engineering, E.G.S Pillay Engineering College, Nagapattinam.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The project is design to build an
obstacle avoidance robotic vehicle b y using a
ultrasonic sensors for its movement. A micro-controller
(AT mega 328P) is used to achieve the desired
operation. A robot is a machine that can perform task
automatically or with guidance. It is a combination of
computational intelligence and physical machines
(motors). Computational intelligence follows the
programmed instructions.
The project proposes robotic vehicle that has an
intelligence built in it such that it directs itself whenever
an obstacle comes in its path. This robotic vehicle is built,
using a micro-controller of AT mega 328P family. An
ultrasonic sensor is used to detect any obstacle in front of
it and sends a command to the micro- controller.
Depending on the input signal received, the micro-
controller redirects the robot to move in an alternate
direction by actuating the motors which are interfaced to
it through a motor driver.
Key Words: Robot, AT mega-328P microcontroller,
Ultrasonic sensors, obstacle avoiding robot,servomotor
I. INTRODUCTION
Obstacle avoidance is a primary requirement of any
autonomous navigation robot. Obstacle avoidance robot is
designed to allow the robot to navigate the unknown
environment by avoiding collisions[1]. It senses if there is
any obstacles in the path to avoid it andresumes its running.
There are some very famous methods for robot navigation
like wall-following, edge detection, bomb disposal, line
following. One of the commercial systems uses wall-
following method on a floor cleaning robot for longhallways.
[1] A more general and commonly employed method for
obstacle avoidance is based on edge detection. The
drawback of obstacle avoidance based on edge detecting is
the need of the robot to stop in front of an obstacle in order
to provide a more accurate
measurement. It detect an obstacle and stop the robot
in order to avoid a collision, using some sophisticated
algorithms that enable the robot to detour obstacles. In
future algorithms are more complex, since they
involve detection of an obstacle as well as some kind of
quantitative measurements concerning the obstacle's
dimensions.
In this paper the steering algorithm ensures that the robot
does not have to stop in front of an obstacle during its
navigation [2] Hence the robots may overcome some of the
problems during navigation, which are discussed above and
it can navigate smoothly during its operation avoiding the
collisions. We have presented a basic algorithm and
design which can be further improved depending upon
the required applications.
II. EXISTING SYSTEM:
In simple robot, steering algorithm is used for
robotic actions in which driver or a human being is
controlling the robot by using r e m o t e . Here driver is
present, who can see the obstacle and navigate robot
accordingly.
III. PROPOSED SYSTEM:
The project proposes an autonomous robotic
vehicle, In which no remote is used for controlling the
robotic actions. It intelligently detects obstacles present
on its path through the sensors and take decision on the
basis of internal code that we set for it. Here we are using
servomotor to rotate the sensor up to180 degree or 360
degree.
The detail information is given in the following
subtopics which will help you to understand the whole
system and its design.
BASIC DESIGN OF ROBOT
This robot was built with an Arduino
development board on which microcontroller is placed.
Arduino board is connected with DC Motor through Motor
driver board which provide power to the actuators.
Actuators are used to move robot in Forward, Reverse,
Left and Right directions.
The brief description ofinputspinsformovement
of robot is given in below in table.
Movement Pin 10 Pin 11 Pin 12 Pin 13
Forward 1 0 0 1
Backward 0 1 1 0
Left 1 0 1 0
Right 0 1 0 1
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1661
The movement of robot will be stop whenever there is an
obstacle is present on its path which can be detected
by ultrasonic sensors. Ultrasonic sensors give time in
distance to the microcontroller for further actions. Then it
converts it in to the input signal.
SENSORS FOR OBSTACLE AVOIDANCE:
Varieties of sensors are available which can be used for
the detection of obstacles.[3] Some of the very popular
sensors are: Infrared sensors (IR),Ultrasonic sensors,
Cameras, which can be used as a part of Computer
Vision, Sonar. It can measure the distance in its field of
view of about thousands to hundreds points
In the design of robot, we are using ultrasonic
sensors for obstacle detection and avoidance.[3]The
ultrasonic sensors continuously emits the frequency
signals, when obstacle is detected this signals are
reflected back which then considered as input to the
sensor.
Fig.1: Schematic Diagram
The ultrasonic sensor consists ofa multivibrator,
which fixed at its base. The multi vibrator is
combination of a resonator and vibrator. The
ultrasonic waves generated by the vibration are
delivers to the resonator. Ultrasonic sensor actually
consists of two parts: the emitter which producesa 40
kHz sound wave and detector which detects 40 kHz
sound wave and sends electrical signal back to the
microcontroller[5]
In our project, we are using HC-SR04 ultrasonic
sensors which consist of 4 pins VCC, Trigger, Echo and
GND[6]
Fig.2:
HC-SR04 Sensor Diagram
Features:
Power Supply : +5V
DC Working Current : 15mA
Effectual Angle : <15degree
Ranging Distance : 2cm – 400cm/1’’-13ft
Resolution : 0.3cm Measuring Angle
: 30 degree
Input pulse width : 10uS
ALGORITHM - WORKING PRINCIPLE
The sonar system is used in HC-SR04 ultrasonic
sensor to determine distance to an object like bats do. It
offers excellent non-contact range detection from about 2
cm to 400 cm or 1’’ to 13 feet. Its operation is not affected
by sunlight or black material.
The ultrasonic sensor emits the short and high
frequency signal. If they detect any object, then they
reflect back echo signal which taken as input to the
sensor through Echo pin.
Firstly we initialize Trigger andEchopinaslowand
push the robot in forward direction. when obstacle is
detected Echo pin will give input as high to micro-
controller. Everytime the function waits for pin to go high
and starts timing, then timing will be stopped when pin go
to low. It returns the pulse length in microseconds or when
complete pulse was not received within the timeout it
returns 0.
The timing has been determined means it gives
length of the pulse and will show errors in shorter pulses.
Pulses from 10microseconds to 3 minutes in length are
taken into consideration.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1662
After determining the time, it converts into a
distance. If the distance of object is moderate then speed of
robot get reduced and will take left turn, If obstacle is
present in left side then it will take right turn.
If the distance of object is short then speed ofrobot
get decreased and will turn in backward direction andthen
can go in left or right direction.
Fig.3: Obstacle Avoidance Flowchart
IMPLEMENTATION
The implementation ofobstacle avoidancestrategy
for robot involves the writing and compilation of program
using Arduino software. Itisa popularprogrammable board
used to create projects
It consists of a simple hardware platformon which
microcontroller is placed as well as a free codeeditor which
has a “one click compile or upload” feature. Hence it is
designed for the people in such a way that they can use it
without necessarily being an expert programmer. It can be
operated by normal persons.
Arduino offers an open-source electronic
prototyping platform it is easy to use and flexible for
peoples who are beginners in robotics field with both the
software and hardware perspective.
Sensors are connected with the Arduino board
using breadboard. Microcontroller is able to sense the
environment through receivinginputfrom sensors.Itisalso
able to control its surrounding through controlling motors
and other actuators.[5]
The Arduino programming language that is based
on the processing are used to program the microcontroller
found on the board. Due to its open- source environment,
we can able to easily write and upload codes to the I/O
board. Arduino environment is written in Embedded C
hence it can be run on Linux, Mac OSX and Windows
platforms.
The output of the comparator is given to the
microcontroller, which then moves actuators in left or
right direction by giving power through DC motor.
IV. CONCLUSION
We build a robotic vehicle which moves in different
directions like Forward, Backward, Left, and Right when
input is given to it.
The goal of our project is to create a
Autonomous robot which intelligently detects the
Obstacle in his path and navigate according to the actions
that we set for it.
V. REFERENCE:
[1] N. Senthil Kumar,M.Saravanan,S Jeebananthan
,“Microprocessors & Microcontrollers”, Oxford
University Press,4th Edition,2012,ISBN:978-0-19-
806647-7
[2] B. Ram, “Fundamental of Microprocessors &
Microcontrollers”, Dhanpat Rai Publication,Seventh
Edition, ISBN:978-81-89928-60-5
[3] M. C. Lam, A. S. Prabuwono, H. Arshad, C. S. Chan,
“A Real-Time Vision-Based Frameworkfor Human-
Robot Interaction”, , 7066LectureNotes .in Computer
Science (Part 1),2011, pp. 257-267, IVIC 2011.
[4] T. Ishida, and Y. Kuroki, “Sensor System of a small
Biped EntertainmentRobot”, AdvancedRobotics,©VSP
and Robotics Society of Japan,Vol.18, No. 10, pp 1039-
1052, 2004,.
[5] Maikoto T., Koji Y., and Satoshi E., “Studies on
Forward Motion of Five Legs Robot”, Journal Code:
L0318B 2005, 2P1-S-065, 2005. [6] Proceedings of
Cooperative Intelligent Robotics in space-II SPIE vol.
1612,Boston, Nov 1991.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056
Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1663
[7] A. R. A Besari, R. Zamri, A. S. Prabuwono, and S.
Kuswadi, “The Study on Optimal Gait for Five-Legged
Robot with Reinforcement Learning”,Intelligent
.Robotics and Applications, , Vol. 5928, pp. 1170-1175,
2009.

More Related Content

What's hot

Gesture Controlled Car_Project report
Gesture Controlled Car_Project reportGesture Controlled Car_Project report
Gesture Controlled Car_Project reportAshikapokiya12345
 
Human Detection Robot
Human Detection RobotHuman Detection Robot
Human Detection RobotSamiul Bapon
 
Aacellerometer
AacellerometerAacellerometer
Aacellerometermukeshdeep
 
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET-  	  PC Controlled Wireless Robot for Detecting Human PresenceIRJET-  	  PC Controlled Wireless Robot for Detecting Human Presence
IRJET- PC Controlled Wireless Robot for Detecting Human PresenceIRJET Journal
 
Women Safety Night Patrolling Robot Using IOT
Women Safety Night Patrolling Robot Using IOTWomen Safety Night Patrolling Robot Using IOT
Women Safety Night Patrolling Robot Using IOTDr. Amarjeet Singh
 
Wireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic HandWireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic HandAhmad Moharib
 
Floor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semFloor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semVatsal N Shah
 
Final report obstacle avoiding roboat
Final report obstacle avoiding roboatFinal report obstacle avoiding roboat
Final report obstacle avoiding roboatShubham Thakur
 
Hand gesture controlled robot with arduino
Hand gesture controlled robot with arduinoHand gesture controlled robot with arduino
Hand gesture controlled robot with arduinoAnindyaAdhikary3
 
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06Eklavya Sharma
 
Gesture control robot using by Ardiuno
Gesture control robot using by ArdiunoGesture control robot using by Ardiuno
Gesture control robot using by ArdiunoSudhir Kumar
 
Accelerometer controlled robot
Accelerometer controlled robotAccelerometer controlled robot
Accelerometer controlled robotMohit Keshav
 
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...IRJET Journal
 

What's hot (18)

Obstacle avoiding robot(Lab report)
Obstacle  avoiding  robot(Lab report)Obstacle  avoiding  robot(Lab report)
Obstacle avoiding robot(Lab report)
 
Gesture Controlled Car_Project report
Gesture Controlled Car_Project reportGesture Controlled Car_Project report
Gesture Controlled Car_Project report
 
Human Detection Robot
Human Detection RobotHuman Detection Robot
Human Detection Robot
 
Robotic Hand
Robotic HandRobotic Hand
Robotic Hand
 
Aacellerometer
AacellerometerAacellerometer
Aacellerometer
 
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET-  	  PC Controlled Wireless Robot for Detecting Human PresenceIRJET-  	  PC Controlled Wireless Robot for Detecting Human Presence
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
 
Women Safety Night Patrolling Robot Using IOT
Women Safety Night Patrolling Robot Using IOTWomen Safety Night Patrolling Robot Using IOT
Women Safety Night Patrolling Robot Using IOT
 
Animatronic hand controller
Animatronic hand controllerAnimatronic hand controller
Animatronic hand controller
 
Wireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic HandWireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic Hand
 
Floor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semFloor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th sem
 
Final report obstacle avoiding roboat
Final report obstacle avoiding roboatFinal report obstacle avoiding roboat
Final report obstacle avoiding roboat
 
FLOOR CLEANER
FLOOR CLEANERFLOOR CLEANER
FLOOR CLEANER
 
Hand gesture controlled robot with arduino
Hand gesture controlled robot with arduinoHand gesture controlled robot with arduino
Hand gesture controlled robot with arduino
 
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
MOBILE CONTROLLED ROBOTIC ARM USING ARDUINO AND HC-06
 
Gesture control robot using by Ardiuno
Gesture control robot using by ArdiunoGesture control robot using by Ardiuno
Gesture control robot using by Ardiuno
 
Accelerometer controlled robot
Accelerometer controlled robotAccelerometer controlled robot
Accelerometer controlled robot
 
Hand Gesture Controlled Robot
Hand Gesture Controlled RobotHand Gesture Controlled Robot
Hand Gesture Controlled Robot
 
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
 

Similar to Autonomous navigation robot

GESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFTGESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFTIRJET Journal
 
IRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled RobotIRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled RobotIRJET Journal
 
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET Journal
 
BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONIRJET Journal
 
IRJET- Automated Targeting System for Open Space Military Area
IRJET- Automated Targeting System for Open Space Military AreaIRJET- Automated Targeting System for Open Space Military Area
IRJET- Automated Targeting System for Open Space Military AreaIRJET Journal
 
IRJET-LRMSE: A Framework on Lunar Rover for Moon Surface Exploration
IRJET-LRMSE: A Framework on Lunar Rover for Moon Surface ExplorationIRJET-LRMSE: A Framework on Lunar Rover for Moon Surface Exploration
IRJET-LRMSE: A Framework on Lunar Rover for Moon Surface ExplorationIRJET Journal
 
IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...
IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...
IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...IRJET Journal
 
Design and implementation of an sms based robotic system for hole- detection ...
Design and implementation of an sms based robotic system for hole- detection ...Design and implementation of an sms based robotic system for hole- detection ...
Design and implementation of an sms based robotic system for hole- detection ...eSAT Journals
 
Distance Measurement Using Ultrasonic Sensor and Nodemcu
Distance Measurement Using Ultrasonic Sensor and NodemcuDistance Measurement Using Ultrasonic Sensor and Nodemcu
Distance Measurement Using Ultrasonic Sensor and NodemcuIRJET Journal
 
Automatic Car Parking
Automatic Car ParkingAutomatic Car Parking
Automatic Car ParkingIRJET Journal
 
Bluetooth Controlled Garbage Collection Robot Arm
Bluetooth Controlled Garbage Collection Robot ArmBluetooth Controlled Garbage Collection Robot Arm
Bluetooth Controlled Garbage Collection Robot ArmIRJET Journal
 
IRJET- Smart Walking Stick for the Visually Impaired
IRJET- Smart Walking Stick for the Visually ImpairedIRJET- Smart Walking Stick for the Visually Impaired
IRJET- Smart Walking Stick for the Visually ImpairedIRJET Journal
 
IRJET- Design Analysis of Land Surveying Robot using Arduino UNO
IRJET- Design Analysis of Land Surveying Robot using Arduino UNOIRJET- Design Analysis of Land Surveying Robot using Arduino UNO
IRJET- Design Analysis of Land Surveying Robot using Arduino UNOIRJET Journal
 
A Voice Controlled Vehicle For The Aid Of Disabled Person
A Voice Controlled Vehicle For The Aid Of Disabled PersonA Voice Controlled Vehicle For The Aid Of Disabled Person
A Voice Controlled Vehicle For The Aid Of Disabled PersonIRJET Journal
 
obstacle avoiding robot project
obstacle avoiding robot projectobstacle avoiding robot project
obstacle avoiding robot projectAisha Naeem
 
Design and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic VehicleDesign and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic VehicleIRJET Journal
 
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor NetworkIRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor NetworkIRJET Journal
 
Jun 13 ijbi_002
Jun 13 ijbi_002Jun 13 ijbi_002
Jun 13 ijbi_002Anuj Raj
 
Jun 13 ijbi_002
Jun 13 ijbi_002Jun 13 ijbi_002
Jun 13 ijbi_002anuj87420
 
A SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdf
A SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdfA SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdf
A SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdfAakash Sheelvant
 

Similar to Autonomous navigation robot (20)

GESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFTGESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFT
 
IRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled RobotIRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled Robot
 
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
 
BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTION
 
IRJET- Automated Targeting System for Open Space Military Area
IRJET- Automated Targeting System for Open Space Military AreaIRJET- Automated Targeting System for Open Space Military Area
IRJET- Automated Targeting System for Open Space Military Area
 
IRJET-LRMSE: A Framework on Lunar Rover for Moon Surface Exploration
IRJET-LRMSE: A Framework on Lunar Rover for Moon Surface ExplorationIRJET-LRMSE: A Framework on Lunar Rover for Moon Surface Exploration
IRJET-LRMSE: A Framework on Lunar Rover for Moon Surface Exploration
 
IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...
IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...
IRJET - Design of Automated Monitoring Robot for Drainage Systems using IoT P...
 
Design and implementation of an sms based robotic system for hole- detection ...
Design and implementation of an sms based robotic system for hole- detection ...Design and implementation of an sms based robotic system for hole- detection ...
Design and implementation of an sms based robotic system for hole- detection ...
 
Distance Measurement Using Ultrasonic Sensor and Nodemcu
Distance Measurement Using Ultrasonic Sensor and NodemcuDistance Measurement Using Ultrasonic Sensor and Nodemcu
Distance Measurement Using Ultrasonic Sensor and Nodemcu
 
Automatic Car Parking
Automatic Car ParkingAutomatic Car Parking
Automatic Car Parking
 
Bluetooth Controlled Garbage Collection Robot Arm
Bluetooth Controlled Garbage Collection Robot ArmBluetooth Controlled Garbage Collection Robot Arm
Bluetooth Controlled Garbage Collection Robot Arm
 
IRJET- Smart Walking Stick for the Visually Impaired
IRJET- Smart Walking Stick for the Visually ImpairedIRJET- Smart Walking Stick for the Visually Impaired
IRJET- Smart Walking Stick for the Visually Impaired
 
IRJET- Design Analysis of Land Surveying Robot using Arduino UNO
IRJET- Design Analysis of Land Surveying Robot using Arduino UNOIRJET- Design Analysis of Land Surveying Robot using Arduino UNO
IRJET- Design Analysis of Land Surveying Robot using Arduino UNO
 
A Voice Controlled Vehicle For The Aid Of Disabled Person
A Voice Controlled Vehicle For The Aid Of Disabled PersonA Voice Controlled Vehicle For The Aid Of Disabled Person
A Voice Controlled Vehicle For The Aid Of Disabled Person
 
obstacle avoiding robot project
obstacle avoiding robot projectobstacle avoiding robot project
obstacle avoiding robot project
 
Design and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic VehicleDesign and Fabrication of Obstacle Avoiding Robotic Vehicle
Design and Fabrication of Obstacle Avoiding Robotic Vehicle
 
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor NetworkIRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
 
Jun 13 ijbi_002
Jun 13 ijbi_002Jun 13 ijbi_002
Jun 13 ijbi_002
 
Jun 13 ijbi_002
Jun 13 ijbi_002Jun 13 ijbi_002
Jun 13 ijbi_002
 
A SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdf
A SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdfA SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdf
A SMART VOICE CONTROLLED PICK AND PLACE ROBOT.pdf
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 

Recently uploaded (20)

HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 

Autonomous navigation robot

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1660 AUTONOMOUS NAVIGATION ROBOT S. Senthilkumar1, R. Nithya2, P. Vaishali3, R. Valli4, G. Vanitha5, L. Ramachanndran6 1, 6 – Assistant Professor 2, 3, 4 & 5 – UG Scholars Department of Electronics and Communication Engineering, E.G.S Pillay Engineering College, Nagapattinam. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The project is design to build an obstacle avoidance robotic vehicle b y using a ultrasonic sensors for its movement. A micro-controller (AT mega 328P) is used to achieve the desired operation. A robot is a machine that can perform task automatically or with guidance. It is a combination of computational intelligence and physical machines (motors). Computational intelligence follows the programmed instructions. The project proposes robotic vehicle that has an intelligence built in it such that it directs itself whenever an obstacle comes in its path. This robotic vehicle is built, using a micro-controller of AT mega 328P family. An ultrasonic sensor is used to detect any obstacle in front of it and sends a command to the micro- controller. Depending on the input signal received, the micro- controller redirects the robot to move in an alternate direction by actuating the motors which are interfaced to it through a motor driver. Key Words: Robot, AT mega-328P microcontroller, Ultrasonic sensors, obstacle avoiding robot,servomotor I. INTRODUCTION Obstacle avoidance is a primary requirement of any autonomous navigation robot. Obstacle avoidance robot is designed to allow the robot to navigate the unknown environment by avoiding collisions[1]. It senses if there is any obstacles in the path to avoid it andresumes its running. There are some very famous methods for robot navigation like wall-following, edge detection, bomb disposal, line following. One of the commercial systems uses wall- following method on a floor cleaning robot for longhallways. [1] A more general and commonly employed method for obstacle avoidance is based on edge detection. The drawback of obstacle avoidance based on edge detecting is the need of the robot to stop in front of an obstacle in order to provide a more accurate measurement. It detect an obstacle and stop the robot in order to avoid a collision, using some sophisticated algorithms that enable the robot to detour obstacles. In future algorithms are more complex, since they involve detection of an obstacle as well as some kind of quantitative measurements concerning the obstacle's dimensions. In this paper the steering algorithm ensures that the robot does not have to stop in front of an obstacle during its navigation [2] Hence the robots may overcome some of the problems during navigation, which are discussed above and it can navigate smoothly during its operation avoiding the collisions. We have presented a basic algorithm and design which can be further improved depending upon the required applications. II. EXISTING SYSTEM: In simple robot, steering algorithm is used for robotic actions in which driver or a human being is controlling the robot by using r e m o t e . Here driver is present, who can see the obstacle and navigate robot accordingly. III. PROPOSED SYSTEM: The project proposes an autonomous robotic vehicle, In which no remote is used for controlling the robotic actions. It intelligently detects obstacles present on its path through the sensors and take decision on the basis of internal code that we set for it. Here we are using servomotor to rotate the sensor up to180 degree or 360 degree. The detail information is given in the following subtopics which will help you to understand the whole system and its design. BASIC DESIGN OF ROBOT This robot was built with an Arduino development board on which microcontroller is placed. Arduino board is connected with DC Motor through Motor driver board which provide power to the actuators. Actuators are used to move robot in Forward, Reverse, Left and Right directions. The brief description ofinputspinsformovement of robot is given in below in table. Movement Pin 10 Pin 11 Pin 12 Pin 13 Forward 1 0 0 1 Backward 0 1 1 0 Left 1 0 1 0 Right 0 1 0 1
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1661 The movement of robot will be stop whenever there is an obstacle is present on its path which can be detected by ultrasonic sensors. Ultrasonic sensors give time in distance to the microcontroller for further actions. Then it converts it in to the input signal. SENSORS FOR OBSTACLE AVOIDANCE: Varieties of sensors are available which can be used for the detection of obstacles.[3] Some of the very popular sensors are: Infrared sensors (IR),Ultrasonic sensors, Cameras, which can be used as a part of Computer Vision, Sonar. It can measure the distance in its field of view of about thousands to hundreds points In the design of robot, we are using ultrasonic sensors for obstacle detection and avoidance.[3]The ultrasonic sensors continuously emits the frequency signals, when obstacle is detected this signals are reflected back which then considered as input to the sensor. Fig.1: Schematic Diagram The ultrasonic sensor consists ofa multivibrator, which fixed at its base. The multi vibrator is combination of a resonator and vibrator. The ultrasonic waves generated by the vibration are delivers to the resonator. Ultrasonic sensor actually consists of two parts: the emitter which producesa 40 kHz sound wave and detector which detects 40 kHz sound wave and sends electrical signal back to the microcontroller[5] In our project, we are using HC-SR04 ultrasonic sensors which consist of 4 pins VCC, Trigger, Echo and GND[6] Fig.2: HC-SR04 Sensor Diagram Features: Power Supply : +5V DC Working Current : 15mA Effectual Angle : <15degree Ranging Distance : 2cm – 400cm/1’’-13ft Resolution : 0.3cm Measuring Angle : 30 degree Input pulse width : 10uS ALGORITHM - WORKING PRINCIPLE The sonar system is used in HC-SR04 ultrasonic sensor to determine distance to an object like bats do. It offers excellent non-contact range detection from about 2 cm to 400 cm or 1’’ to 13 feet. Its operation is not affected by sunlight or black material. The ultrasonic sensor emits the short and high frequency signal. If they detect any object, then they reflect back echo signal which taken as input to the sensor through Echo pin. Firstly we initialize Trigger andEchopinaslowand push the robot in forward direction. when obstacle is detected Echo pin will give input as high to micro- controller. Everytime the function waits for pin to go high and starts timing, then timing will be stopped when pin go to low. It returns the pulse length in microseconds or when complete pulse was not received within the timeout it returns 0. The timing has been determined means it gives length of the pulse and will show errors in shorter pulses. Pulses from 10microseconds to 3 minutes in length are taken into consideration.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1662 After determining the time, it converts into a distance. If the distance of object is moderate then speed of robot get reduced and will take left turn, If obstacle is present in left side then it will take right turn. If the distance of object is short then speed ofrobot get decreased and will turn in backward direction andthen can go in left or right direction. Fig.3: Obstacle Avoidance Flowchart IMPLEMENTATION The implementation ofobstacle avoidancestrategy for robot involves the writing and compilation of program using Arduino software. Itisa popularprogrammable board used to create projects It consists of a simple hardware platformon which microcontroller is placed as well as a free codeeditor which has a “one click compile or upload” feature. Hence it is designed for the people in such a way that they can use it without necessarily being an expert programmer. It can be operated by normal persons. Arduino offers an open-source electronic prototyping platform it is easy to use and flexible for peoples who are beginners in robotics field with both the software and hardware perspective. Sensors are connected with the Arduino board using breadboard. Microcontroller is able to sense the environment through receivinginputfrom sensors.Itisalso able to control its surrounding through controlling motors and other actuators.[5] The Arduino programming language that is based on the processing are used to program the microcontroller found on the board. Due to its open- source environment, we can able to easily write and upload codes to the I/O board. Arduino environment is written in Embedded C hence it can be run on Linux, Mac OSX and Windows platforms. The output of the comparator is given to the microcontroller, which then moves actuators in left or right direction by giving power through DC motor. IV. CONCLUSION We build a robotic vehicle which moves in different directions like Forward, Backward, Left, and Right when input is given to it. The goal of our project is to create a Autonomous robot which intelligently detects the Obstacle in his path and navigate according to the actions that we set for it. V. REFERENCE: [1] N. Senthil Kumar,M.Saravanan,S Jeebananthan ,“Microprocessors & Microcontrollers”, Oxford University Press,4th Edition,2012,ISBN:978-0-19- 806647-7 [2] B. Ram, “Fundamental of Microprocessors & Microcontrollers”, Dhanpat Rai Publication,Seventh Edition, ISBN:978-81-89928-60-5 [3] M. C. Lam, A. S. Prabuwono, H. Arshad, C. S. Chan, “A Real-Time Vision-Based Frameworkfor Human- Robot Interaction”, , 7066LectureNotes .in Computer Science (Part 1),2011, pp. 257-267, IVIC 2011. [4] T. Ishida, and Y. Kuroki, “Sensor System of a small Biped EntertainmentRobot”, AdvancedRobotics,©VSP and Robotics Society of Japan,Vol.18, No. 10, pp 1039- 1052, 2004,. [5] Maikoto T., Koji Y., and Satoshi E., “Studies on Forward Motion of Five Legs Robot”, Journal Code: L0318B 2005, 2P1-S-065, 2005. [6] Proceedings of Cooperative Intelligent Robotics in space-II SPIE vol. 1612,Boston, Nov 1991.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395 -0056 Volume: 04 Issue: 02 | Feb -2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 5.181 | ISO 9001:2008 Certified Journal | Page 1663 [7] A. R. A Besari, R. Zamri, A. S. Prabuwono, and S. Kuswadi, “The Study on Optimal Gait for Five-Legged Robot with Reinforcement Learning”,Intelligent .Robotics and Applications, , Vol. 5928, pp. 1170-1175, 2009.