Alll
Alll
First and foremost, I would like to take this opportunity to thank our professor
Pushpendra Dwiwedi for his guidance and advice on this project.
We would like to thank our institute, Bhagalpur College of Engineering, for having
granted us the resources, freedom and opportunity to embark on a project of our
choice, which has taught us so much.
Thank You.
Abstract
This project is about Radar System controlled via Arduino. This Radar system consists
of an Ultrasonic Sensor and Servo Motor, these are the major components of the
system. Basic working of the system is that it have to detect objects in its defined
range. Ultra-sonic sensor is attached to the servo motor it rotates about 180 degree
and gives visual representation on the software called processing IDE. Processing IDE
gives graphical representation and it also gives angle or position of the obzject and
distance of the object. This system is controlled through Arduino. Arduino UNO board
is sufficed to control ultrasonic sensor and also to interface the sensor and display
device. While researching, we learned about existing navigation and obstacle
detection innovations and different systems where ultrasonic sensors are used
efficiently. Main application of this RADAR system comes into different field of
navigation, positioning, object identification, mapping, spying or tracking and different
applications. These less investment system are also suitable for indoor applications.
Table of Contents
1.Abstract
2.Acknowledgement
3. Introduction
4. History
5. Project Aim
6. Hardware Requirements
7.Software Requirements
9.Methodology
10. Connections
11. Working
14.Application
15. Conclusions
16.References
Appendix A
Appendix B
Chapter 1
1.1 Introduction
RADAR system is an object detection or tracking system which uses radio waves to
decide or get the range, height, heading, or speed of items or objects. Radar
frameworks or system arrive in an assortment of sizes and have distinctive
performance particulars. Some radars are utilized for aviation authority at air
terminals and others are utilized for long range observation and early cautioning
frameworks. There are some ways to show radar working data. There are also some
modified radar systems. Which have advance technology of handling the systems.
These modified system are used at higher levels to get or extract the helpful or
important data Our proposed system’s working principle is linked by the following
components which are is ultra-sonic sensor connected to the microcontroller (we have
chosen Arduino) digital input and output pins. Then we have servo motor which is also
connected to digital output and input pins. Our both main components ultra-sonic
sensor and servo motor are connected simultaneously, so that when our servo motor
rotates from 0 degree to 180 degree from extreme right to extreme left the motor will
rotate nearby its axis. We utilize Computer screen to demonstrate the data (distance
and angle) through software called “Processing development Environment”.
1.2 History
It is a common assumption that radar is a by-product of World War II, brought about
by military necessity. According to Hiser (Radar Meteorology, Third Edition, 1970), this
is true only to the extent that the war produced radar equipment in great quantities
suitable for practical use. Actually, the fundamental principle underlying all radars was
first observed in 1886 by the physicist Heinrich Hertz when he found that
electromagnetic waves could be reflected from various objects, and even focused into
beams by appropriate reflectors.
The aim of the project is to design and develop an object detection system which
could determine the presence of objects in its vicinity.
Chapter 2
2. Jumper Wires
3. Connecting Wires
1. Arduino IDE
2. Processing IDE
2.3.1 The Arduino UNO
Arduino is an open source electronics platform for fast prototyping of projects for
users with minimal knowledge or experience in electronics and programming. We
have used the Arduino UNO, the most widely used variant of the Arduino.
Arduino. The programming language used for an Arduino, called the Arduino
Programming language, is very similar to C/C++ except that we can use inbuilt
functions of the Arduino libraries which keep the code very simple and short
Why Arduino?
We had the following reasons strongly backing our decision to choose the Arduino
UNO Support Thanks to its simple and accessible user experience,
Arduino has been used in thousands of different projects and applications. The
Arduino software is easy-to-use for beginners, yet flexible enough for advanced users.
It runs on Mac, Windows, and Linux.
One important advantage of using the UNO is that unlike most previous
programmable circuit boards, the Arduino UNO does not need a separate piece of
hardware (called a programmer) in order to load new code onto the board we can
simply use a USB cable. The ATmega328 on the Arduino Uno comes pre- programmed
with a bootloader that allows us to upload new code to it without the use of an
extemal hardware programmer.
Moreover, the components we have used work under the same operating voltage and
current conditions as an Arduino, especially considering the fact that such
components are nowadays sold with their compatibility with Arduino in mind.
Considering the above factors, we found Arduino UNO to be the most appropriate
microcontroller board to work with for this project.
Operation of Arduino
Once a program written for an Arduino, called a “Sketch is uploaded to the board via
the Arduino IDE, the Arduino environment performs some small transformations to
make sure that the code is correct C/C++, It then gets passed to a compiler, which
turns the human readable code into machine readable instructions (object files). Then,
the code gets combined with (linked against) the standard Arduino libraries that
provide basic functions like digitalWrite() or Serial.print(). The result is a single Intel
lex file, which contains the specific bytes that need to be written to the program
(flash) memory of the chip on the Arduino board. This file is then uploaded to the
board: transmitted over the USB or serial connection via the bootloader already on the
chip or with external programming hardware.
2.3.2 The HC-SR04 Ultrasonic Sensor
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro
seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH); // Reads the
echoPin, returns the sound wave travel time in
microseconds
distance= duration*0.034/2;
return distance;
}