SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 698
Characteristics of different sensors used for Distance Measurement
Pavithra B. G1, Siva Subba Rao Patange2, Sharmila A3, Raja S2, Sushma S J1
1GSSS Institute of Engineering & Technology for Women, Mysuru-570016.
2CSIR-National Aerospace Laboratories, Bengaluru-560017, India.
3Hindustan Institute of Technology and Science, Chennai-603 103.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - This paper demonstrates the characteristics of
different sensors such as IR proximity sensor;Ultrasonicsensor
and LASER sensor is defined by measuring the distance of
obstacle avoidance. Each sensor has different behavior for its
own characteristics. Both ultrasonic and IRsensorarelowcost
sensors. This paper compares the sensor features which are
suitable for obstacle detection for both indoor and outdoor
environment.
Keywords: IR sensor, Ultrasonic sensor,LASERsensor,LDR
Detector ARDUINO UNO board, LED, Luminous meter.
1. INTRODUCTION
Nowadays many different sensors are used for distance
measurement. In this paper the three different sensor
features are described by testing it with ARDUINO UNO
board. The C code has written in ARDUINO IDE software to
check the different sensors. Hence thereweremanyresearch
were done to maintain the safety of the vehicle like vision
based technique by using cameras, laser ranging, IR sensors,
sound sensors etc., were considered. The ultrasonic waves
are sound waves that have the frequency above the limitofa
human audibility. Experimentswere conductedon different
sensors with different distances. All the three sensors have
different distance limitations. So, with different
measurement, which sensor is suitableforobstacledetection
and which is having the maximum distance limitation.
2. HARDWARE AND SOFTWARE COMPONENTS
2.1 IR Sensor
IR sensor consists of two elements I.e. IR source, IR
detector. Infrared source includes an LED and infrared
detector includes photodiodes. The IR LED lookslikenormal
LED but its radiation is invisible to human eye. The IR
transmitter can be constructed using an IR LED current
limiting resistor and power supply. The IR sensor is as
shown in fig 1[1].
The principle of IR sensor as shown in fig 2 and The IR
sensor works as an object detection sensor that consists of
IR LED, IR photodiode together, they are called as photo
coupler or opto coupler. Now the IR transmitter emits
radiation and falls on the object [2]. The object reflects some
of the radiation back to the IR receiver or IR detector. Based
on the intensity of the reflected signal the output of the
sensor is defined [3]. In theoretical this IR sensor distance
ranges up to 30cm and operating voltage is 5V.
Fig-1: IR Sensor (FC 51)
Fig-2: Working principle of IR sensor
2.2 Ultrasonic Sensor
Ultrasonic sensor (HC-SR04) utilizes sonar to measure
the range of an object. Its range is to find the distance of any
object from 2cm to 400cm. This sensor uses sonar to detect
the objects. This sensor widely used in robotics to build the
robots, aircrafts, in order to avoid the obstacle. The
hardware component consists of both ultrasonictransmitter
and receiver module. The sensor module consists of 4 pins
namely: trigger, echo, power supply and ground.
Fig-3: (a) Ultrasonic sensor HC-SR04, (b) Working
principle of Ultrasonic Sensor [3]
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 699
The figure 3 shows ultrasonic image and working
principle of ultrasonic sensor. The distance between the
source and target of echo pin and time taken to reflect back
from echo pin considered. The ultrasonic sensor requires a
pulse of high (5V) for 10μS. This sequentially initiates the
ultrasonic sensor and it sends 8 cycles of 40 kHz. Then, it
waits to receive the reflected ultrasonic signal from the
obstacle [4]. To obtain the distance of the object the widthof
echo pin is measured as follows: Time=Width of Echo pulse
in microseconds or the speed of the sound may also be
considered.

Distance in centimeters = Time / 58,
 Distance in inches= Time / 148.
2.3 LASER Sensor
The LASER sensor (KY-008) gives a smallinternbeamor
emits a dot shaped, red laser beam. The figure 4shows laser
sensor. This module has three pins i.e. From left to right pin
1 is signal output, pin number 2 is +5 volts (DC), and pin 3 is
GND. Using this system, we have experimentedalasersensor
which has both transmitter and receiver units into one
module [5]. This sensor theoretically measures up to 1000
cm or 10000 mm.
Fig-4: Laser sensor (KY008)
Laser is basically concentrated on light source. LDR
detector (Light Dependent Resistor), Photo diode & photo
transistors are used to detect lasers.
2.4 LDR detector
To detect a laser, a light dependent resistor (LDR) is
needed [6]. An LDR is a device which has a resistance that
varies according to the amount of light falling on its surface.
The LDR detector is as shown in fig 5.
.
Fig-5: LDR and circuit symbol
When light hits the LDR, the LED will light up. The
variable resistor is used to fine tune the amount of light
needed to activate the LDR detector.
2.5 ARDUINO UNO Board
 HARDWARE
Arduino board designs use a variety of
microprocessors and controllers. It consists of 14
input/output pins, 6 analog inputs, 16MHz crystal
oscillators, USB connections, a power jack and reset button.
The Arduino Uno is microcontroller is based on the
Atmega328.
Fig-6: ARDUINO UNO board [6]
The Arduino Uno board is as shown in figure 6. The
Arduino Uno can power via the USB connection or with an
external power supply. However, the pin may supply less
than 5V and the board may be unstable. If using more than
12V the voltage regulator may over heat and damage the
board. The Arduino Uno power pinsare Vin, 5V, 3VandGND.
 SOFTWARE
Arduino Uno is open source project to which any
hobbyist can connect for Atmega chips. In this softwarecode
can be written in either c or java script. A program is written
on the IDE Arduino is called a sketch.
Arduino programs are divided into 3 parts
 Structure
 Values
 Functions
Fig-7: Sketch window for Arduino IDE
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 700
The fig 7 shows sketch window used to write the
code for Arduino IDE. The header filescan be includedinthis
window [7]. The Arduino Uno board is renamed with a
specified name and saved in the Arduino file.Itiscompiled,if
any errors are occurred it is corrected andthiscorrectedand
this code is further uploaded to the Arduino Uno board [8].
3. IMPLENTATION OF SENSORS
The simple realization of all sensor work done by
ARDUINO UNO with IDE software. The implementation
process is mentioned below with all the sensors.
3.1 Implementation of Ultrasonic sensor
The below fig 8 showsthe block diagramofArduino
Uno board is connected with ultrasonic sensor. Ultrasonic
sensor sends the sound pulse through trig pin to an object
and receives back from echo pin and passes to Arduino
board.
Fig-8: Block diagram of ultrasonic sensor
The algorithm has developed to find the distance of
an obstacle in the IDE software. Once the algorithm is
developed, the code is verified and uploaded to the board
using IDE software. The LED is connected with Arduino to
glow if any obstacle is present or not. In practical, the
ultrasonic sensor measures the distance range up to 315 cm
and the angle is 30 degree and operating voltage from 3.3V
to 5V.
Fig-9: Experimental setup of ultrasonic sensor
3.2 Implementation of IR sensor
Fig -10: Block diagram of IR sensor
The below fig 10 shows block diagram of IR sensor
and Arduino board. The IR sensor has both transmitter and
receiver. Transmitter LED sends the signal which will find
the obstacle and reflected back from the receiver LED. The
below figure 11 shows an Experimental setup of IR sensor.
The algorithm was developed for finding the distance of an
object. The code was verified and uploaded through IDE
software. The IR sensor measuresthe distanceupto30cmor
300mm and operating voltage from 3.3V to 5V.
Fig-11: Experimental setup of IR sensor
3.3 Implementation of LASER sensor
Fig-12: Block diagram of laser sensor
The above figure 12 shows block diagram of laser
sensor using Arduino board. LASER sensor has both sensor
and detector for finding the obstacle. The LASER light has to
fall on the LDR detector.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 701
Fig-13: Experimental setup of LASER sensor
The figure 13 shows experimental setup of LASER
sensor. This sensor gives digital output like 0 or 1. If the
obstacle is present, the output will be 1 and if the obstacle is
not present the output will be 0. The output is monitored
through the serial monitor of the Arduino IDE software. The
laser will not sense the obstacle in wider angle. It isanarrow
angle detector. It measures the distance up to 1000cm or
10000mm.
The table 1 shows all sensors features like
ultrasonic sensor, IR sensor, LASER sensor.
Table-1: Features of distance measurement sensors
Features Ultrasonic
sensor
IR sensor LASER
sensor
Model name HCSR04 FC 51 KY008
Wavelength 75nm 700nm to
1mm
650nm
Power
Delivered
+5 V DC 3.3V-5V 5V(DC)
Operational
Current
15mA at 3.3 V ,~23
mA at 5.0V:
~43 mA
30mA
Frequency 40KHz 35KHz 30 KHz
Efficient Angle <150 <150 <150
Calculating
Angle
300 450 00
Pulse Width of
Trigger Input
10µS - +ve single
TTL pulse
Aspect 45mm x
20mm x
15mm
4.5cm (L) x
1.4 cm (W) x
0.7cm (H)
18.5mm
x 15mm
4. RESULTS AND DISCUSSION
The results were discussed by comparing all the sensors
output with respect to distance for both indoor and outdoor
environment. The light intensity is measured through the
luminous meter (lux) for all the sensors with distance. The
results were plotted.
Chart-1: Distance measured with Voltage
The chart-1 shows the comparison of voltage and
distance for all the three sensors. To check which sensor is
more suitable for distance measurement, the light intensity
is measured for both indoor and outdoor environment. So,
those results show that the ultrasonic sensor is more
suitable for both indoor and outdoor environment to
measure the distance. With that value the results were
plotted for both indoor and outdoor environment.
5. CONCLUSION
By comparing all the sensors this paper
explained that ultrasonic sensor with respecttodistanceand
voltage is more suitable for obstacle detectioninquadcopter
for both indoor and outdoor environment. In practical the
ultrasonic sensor measures up to 315 cm or 3150 mm with
angle 30 degree. The disadvantages of IR sensor measured
less distance and the LASER sensor measuredupto1000cm,
but the angle is narrow. To connect LASER sensor two
Arduino board is required. Because of this reason theLASER
sensor is less used for obstacle detection. So, compared to
both IR and LASER sensor the Ultrasonic is more suitablefor
obstacle detection.
ACKNOWLEDGEMENT
REFERENCES
[1] Rajan P Thomas, Jithin K K, Hareesh K S,
Habeeburahman C A, Jithin Abraham,“ Range Detection
based on Ultrasonic Principle”, February 2014.
The authors would like to thank the
Director, Mr. Jitendra J Jadhav CSIR-National Aerospace
Laboratories for his persistence to carry out the work and
Dr. Satish Chandra, Head Structural Technologies Division
(STTD) for providing all the facilities for completing this
work. My Special thanksto Mr. Aravindu B, Technicalofficer,
Structural Technologies Division (STTD), CSIR-National
Aerospace Laboratories, for their help.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072
© 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 702
[2] Kirtan Gopal Panda*, Deepak Agrawal, Arcade
Nshimiyimana, Ashraf Hossain, “The effects of
environment on accuracy of ultrasonic sensor operates
in millimetre range”, 20 February 2016.
[3] Ultrasonic ranging module HC-SR04 datasheet[online]
accessed on 23/08/2016
http://users.ece.utexas.edu/~valvano/Data
sheets/HCSR04b.pdf.
[4] H. He, and J. Liu, “The design of ultrasonic distance
measurement system based on S3C2410,” Proceedings
of the IEEE International Conference on Intelligent
Computation Technology and Automation, Oct. 2008.
[5] Shridevi A Mali1, G Sravanthi2*, Siva Subba Rao P3,
Raja S3,Sushma S J1, A R Reddy2, Rohith P Maben3, “An
Algorithm For Obstacle Avoidance Controller Using
Ultrasonic Sensor For Mini Aircraft Applications”
International Journal of Engineering Technology,
Management and Applied Sciences, , Volume 5,Issue
3,March 2017.
[6] “Arduino Uno” https://en.wikipedia.org/
Wiki/Arduino accessed on 14/10/2017.
[7] G Sravanthi1, Shridevi A Mali2, Siva Subba Rao P3,
Intelligent Landing Technique Using Ultrasonic Sensor
for Mav Applications, International Journal Of Pure And
Applied Mathematics, Volume 114, No. 12 2017 .
[8] P. Riseborough, “Automatic Take-Off and Landing
Control for Small UAV’s”.
[9] PankajAkuala, Ananda CM Dr Cm, “IR and Ultrasonic
Sensors Characterization to aid in Altitude estimation
duringlanding of MAV”, 3rd InternationalConferenceon
Recent Advances in Design, DevelopmentandOperation
of MAV.

More Related Content

What's hot

Know Your Teacher(KYT)
Know Your Teacher(KYT)Know Your Teacher(KYT)
Know Your Teacher(KYT)
Ashwani Kumar
 
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 Journal
 
IRJET- Intelligent Lighting System using Arduino and PWM
IRJET- Intelligent Lighting System using Arduino and PWMIRJET- Intelligent Lighting System using Arduino and PWM
IRJET- Intelligent Lighting System using Arduino and PWM
IRJET Journal
 
Project intrusion alert
Project intrusion alertProject intrusion alert
Project intrusion alert
arpit1010
 
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 Journal
 
IRJET- i-Stroller (Robot)
IRJET-  	  i-Stroller (Robot)IRJET-  	  i-Stroller (Robot)
IRJET- i-Stroller (Robot)
IRJET Journal
 
Smart Home Automation using Wi-Fi
Smart Home Automation using Wi-FiSmart Home Automation using Wi-Fi
Smart Home Automation using Wi-Fi
ijtsrd
 
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
 
Arduino embedded systems and advanced robotics
Arduino embedded systems and advanced roboticsArduino embedded systems and advanced robotics
Arduino embedded systems and advanced robotics
Shubham Bhattacharya
 
Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266
INFOGAIN PUBLICATION
 
Proposal Report on Auto Meter Reading
Proposal Report on Auto Meter ReadingProposal Report on Auto Meter Reading
Proposal Report on Auto Meter Reading
RebekahSamuel2
 
IRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless NetworkIRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET Journal
 
IRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually ChallengedIRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually Challenged
IRJET Journal
 
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor UnitIRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET Journal
 
Lalitha ppt
Lalitha pptLalitha ppt
Lalitha ppt
Lalitha Gosukonda
 
IRJET- Smart Blind Stick for Visually Impaired People
IRJET-  	  Smart Blind Stick for Visually Impaired PeopleIRJET-  	  Smart Blind Stick for Visually Impaired People
IRJET- Smart Blind Stick for Visually Impaired People
IRJET Journal
 
Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120
Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120
Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120
TELKOMNIKA JOURNAL
 
IRJET- Android based Home Automation System with Power Optimization Modes
IRJET-  	  Android based Home Automation System with Power Optimization ModesIRJET-  	  Android based Home Automation System with Power Optimization Modes
IRJET- Android based Home Automation System with Power Optimization Modes
IRJET Journal
 
Ijecet 06 06_004
Ijecet 06 06_004Ijecet 06 06_004
Ijecet 06 06_004
IAEME Publication
 
Element14 India Private Limited, Bengaluru
Element14 India Private Limited, BengaluruElement14 India Private Limited, Bengaluru
Element14 India Private Limited, Bengaluru
IndiaMART InterMESH Limited
 

What's hot (20)

Know Your Teacher(KYT)
Know Your Teacher(KYT)Know Your Teacher(KYT)
Know Your Teacher(KYT)
 
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- Intelligent Lighting System using Arduino and PWM
IRJET- Intelligent Lighting System using Arduino and PWMIRJET- Intelligent Lighting System using Arduino and PWM
IRJET- Intelligent Lighting System using Arduino and PWM
 
Project intrusion alert
Project intrusion alertProject intrusion alert
Project intrusion alert
 
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- i-Stroller (Robot)
IRJET-  	  i-Stroller (Robot)IRJET-  	  i-Stroller (Robot)
IRJET- i-Stroller (Robot)
 
Smart Home Automation using Wi-Fi
Smart Home Automation using Wi-FiSmart Home Automation using Wi-Fi
Smart Home Automation using Wi-Fi
 
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...
 
Arduino embedded systems and advanced robotics
Arduino embedded systems and advanced roboticsArduino embedded systems and advanced robotics
Arduino embedded systems and advanced robotics
 
Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266
 
Proposal Report on Auto Meter Reading
Proposal Report on Auto Meter ReadingProposal Report on Auto Meter Reading
Proposal Report on Auto Meter Reading
 
IRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless NetworkIRJET- Rescue of Psycological Infirmity People using Wirless Network
IRJET- Rescue of Psycological Infirmity People using Wirless Network
 
IRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually ChallengedIRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually Challenged
 
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor UnitIRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
IRJET - Intravenous Fluid Level Indicator with Movable Sensor Unit
 
Lalitha ppt
Lalitha pptLalitha ppt
Lalitha ppt
 
IRJET- Smart Blind Stick for Visually Impaired People
IRJET-  	  Smart Blind Stick for Visually Impaired PeopleIRJET-  	  Smart Blind Stick for Visually Impaired People
IRJET- Smart Blind Stick for Visually Impaired People
 
Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120
Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120
Glasses for the blind using ping ultrasonic, ATMEGA8535 and ISD25120
 
IRJET- Android based Home Automation System with Power Optimization Modes
IRJET-  	  Android based Home Automation System with Power Optimization ModesIRJET-  	  Android based Home Automation System with Power Optimization Modes
IRJET- Android based Home Automation System with Power Optimization Modes
 
Ijecet 06 06_004
Ijecet 06 06_004Ijecet 06 06_004
Ijecet 06 06_004
 
Element14 India Private Limited, Bengaluru
Element14 India Private Limited, BengaluruElement14 India Private Limited, Bengaluru
Element14 India Private Limited, Bengaluru
 

Similar to Characteristics of Different Sensors used for Distance Measurement

IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using Arduino
IRJET Journal
 
Short Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoShort Range Radar System using Arduino Uno
Short Range Radar System using Arduino Uno
IRJET Journal
 
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
IRJET Journal
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring System
IRJET Journal
 
ir sensor.docx
ir sensor.docxir sensor.docx
ir sensor.docx
SuperGirlArshiyah
 
Automatic Object Detection and Target using Ultrasonic Sensor
Automatic Object Detection and Target using Ultrasonic SensorAutomatic Object Detection and Target using Ultrasonic Sensor
Automatic Object Detection and Target using Ultrasonic Sensor
IRJET Journal
 
IOT BASED ICU MONITORING SYSTEM
IOT BASED ICU MONITORING SYSTEMIOT BASED ICU MONITORING SYSTEM
IOT BASED ICU MONITORING SYSTEM
IRJET Journal
 
Radar Using Arduino
Radar Using ArduinoRadar Using Arduino
Radar Using Arduino
Golu Jain
 
Radar Detector
Radar Detector Radar Detector
Radar Detector
RahulNarang40
 
Ir sensor mechanism and interfacing with a micro controllers.PPT
Ir sensor mechanism and  interfacing with  a micro controllers.PPTIr sensor mechanism and  interfacing with  a micro controllers.PPT
Ir sensor mechanism and interfacing with a micro controllers.PPT
khairunnesa2
 
IRJET- Clash Avoidance at Hairpin Bends using IR Sensor
IRJET- Clash Avoidance at Hairpin Bends using IR SensorIRJET- Clash Avoidance at Hairpin Bends using IR Sensor
IRJET- Clash Avoidance at Hairpin Bends using IR Sensor
IRJET Journal
 
A Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind PeoplesA Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind Peoples
Asia Smith
 
IOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEMIOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEM
IRJET Journal
 
IRJET- Design and Development of Arduino based Radiation Survey Meter wit...
IRJET-  	  Design and Development of Arduino based Radiation Survey Meter wit...IRJET-  	  Design and Development of Arduino based Radiation Survey Meter wit...
IRJET- Design and Development of Arduino based Radiation Survey Meter wit...
IRJET Journal
 
BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTION
IRJET Journal
 
IRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification SystemIRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification System
IRJET Journal
 
IRJET- Mini IR Radar for unauthorized object detection
IRJET- Mini IR Radar for unauthorized object detectionIRJET- Mini IR Radar for unauthorized object detection
IRJET- Mini IR Radar for unauthorized object detection
IRJET Journal
 
Autonomous navigation robot
Autonomous navigation robotAutonomous navigation robot
Autonomous navigation robot
IRJET Journal
 
IRJET - Intelligent Lighting Solution
IRJET -  	  Intelligent Lighting SolutionIRJET -  	  Intelligent Lighting Solution
IRJET - Intelligent Lighting Solution
IRJET Journal
 
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink SensorDrowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
IRJET Journal
 

Similar to Characteristics of Different Sensors used for Distance Measurement (20)

IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using Arduino
 
Short Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoShort Range Radar System using Arduino Uno
Short Range Radar System using Arduino Uno
 
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
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring System
 
ir sensor.docx
ir sensor.docxir sensor.docx
ir sensor.docx
 
Automatic Object Detection and Target using Ultrasonic Sensor
Automatic Object Detection and Target using Ultrasonic SensorAutomatic Object Detection and Target using Ultrasonic Sensor
Automatic Object Detection and Target using Ultrasonic Sensor
 
IOT BASED ICU MONITORING SYSTEM
IOT BASED ICU MONITORING SYSTEMIOT BASED ICU MONITORING SYSTEM
IOT BASED ICU MONITORING SYSTEM
 
Radar Using Arduino
Radar Using ArduinoRadar Using Arduino
Radar Using Arduino
 
Radar Detector
Radar Detector Radar Detector
Radar Detector
 
Ir sensor mechanism and interfacing with a micro controllers.PPT
Ir sensor mechanism and  interfacing with  a micro controllers.PPTIr sensor mechanism and  interfacing with  a micro controllers.PPT
Ir sensor mechanism and interfacing with a micro controllers.PPT
 
IRJET- Clash Avoidance at Hairpin Bends using IR Sensor
IRJET- Clash Avoidance at Hairpin Bends using IR SensorIRJET- Clash Avoidance at Hairpin Bends using IR Sensor
IRJET- Clash Avoidance at Hairpin Bends using IR Sensor
 
A Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind PeoplesA Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind Peoples
 
IOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEMIOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEM
 
IRJET- Design and Development of Arduino based Radiation Survey Meter wit...
IRJET-  	  Design and Development of Arduino based Radiation Survey Meter wit...IRJET-  	  Design and Development of Arduino based Radiation Survey Meter wit...
IRJET- Design and Development of Arduino based Radiation Survey Meter wit...
 
BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTION
 
IRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification SystemIRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification System
 
IRJET- Mini IR Radar for unauthorized object detection
IRJET- Mini IR Radar for unauthorized object detectionIRJET- Mini IR Radar for unauthorized object detection
IRJET- Mini IR Radar for unauthorized object detection
 
Autonomous navigation robot
Autonomous navigation robotAutonomous navigation robot
Autonomous navigation robot
 
IRJET - Intelligent Lighting Solution
IRJET -  	  Intelligent Lighting SolutionIRJET -  	  Intelligent Lighting Solution
IRJET - Intelligent Lighting Solution
 
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink SensorDrowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
 

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 STRUCTURE
IRJET 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 Characteristics
IRJET 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 ADAS
IRJET 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 Pro
IRJET 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 System
IRJET 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 bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET 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 Design
IRJET 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

Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
nooriasukmaningtyas
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
mamunhossenbd75
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
Yasser Mahgoub
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
KrishnaveniKrishnara1
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
mamamaam477
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
IJNSA Journal
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
University of Maribor
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
abbyasa1014
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
171ticu
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
IJECEIAES
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEMTIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
HODECEDSIET
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
RadiNasr
 

Recently uploaded (20)

Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...A review on techniques and modelling methodologies used for checking electrom...
A review on techniques and modelling methodologies used for checking electrom...
 
Heat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation pptHeat Resistant Concrete Presentation ppt
Heat Resistant Concrete Presentation ppt
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
2008 BUILDING CONSTRUCTION Illustrated - Ching Chapter 02 The Building.pdf
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
 
Engineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdfEngineering Drawings Lecture Detail Drawings 2014.pdf
Engineering Drawings Lecture Detail Drawings 2014.pdf
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
 
Embedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoringEmbedded machine learning-based road conditions and driving behavior monitoring
Embedded machine learning-based road conditions and driving behavior monitoring
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEMTIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
TIME DIVISION MULTIPLEXING TECHNIQUE FOR COMMUNICATION SYSTEM
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdfIron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
Iron and Steel Technology Roadmap - Towards more sustainable steelmaking.pdf
 

Characteristics of Different Sensors used for Distance Measurement

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 698 Characteristics of different sensors used for Distance Measurement Pavithra B. G1, Siva Subba Rao Patange2, Sharmila A3, Raja S2, Sushma S J1 1GSSS Institute of Engineering & Technology for Women, Mysuru-570016. 2CSIR-National Aerospace Laboratories, Bengaluru-560017, India. 3Hindustan Institute of Technology and Science, Chennai-603 103. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - This paper demonstrates the characteristics of different sensors such as IR proximity sensor;Ultrasonicsensor and LASER sensor is defined by measuring the distance of obstacle avoidance. Each sensor has different behavior for its own characteristics. Both ultrasonic and IRsensorarelowcost sensors. This paper compares the sensor features which are suitable for obstacle detection for both indoor and outdoor environment. Keywords: IR sensor, Ultrasonic sensor,LASERsensor,LDR Detector ARDUINO UNO board, LED, Luminous meter. 1. INTRODUCTION Nowadays many different sensors are used for distance measurement. In this paper the three different sensor features are described by testing it with ARDUINO UNO board. The C code has written in ARDUINO IDE software to check the different sensors. Hence thereweremanyresearch were done to maintain the safety of the vehicle like vision based technique by using cameras, laser ranging, IR sensors, sound sensors etc., were considered. The ultrasonic waves are sound waves that have the frequency above the limitofa human audibility. Experimentswere conductedon different sensors with different distances. All the three sensors have different distance limitations. So, with different measurement, which sensor is suitableforobstacledetection and which is having the maximum distance limitation. 2. HARDWARE AND SOFTWARE COMPONENTS 2.1 IR Sensor IR sensor consists of two elements I.e. IR source, IR detector. Infrared source includes an LED and infrared detector includes photodiodes. The IR LED lookslikenormal LED but its radiation is invisible to human eye. The IR transmitter can be constructed using an IR LED current limiting resistor and power supply. The IR sensor is as shown in fig 1[1]. The principle of IR sensor as shown in fig 2 and The IR sensor works as an object detection sensor that consists of IR LED, IR photodiode together, they are called as photo coupler or opto coupler. Now the IR transmitter emits radiation and falls on the object [2]. The object reflects some of the radiation back to the IR receiver or IR detector. Based on the intensity of the reflected signal the output of the sensor is defined [3]. In theoretical this IR sensor distance ranges up to 30cm and operating voltage is 5V. Fig-1: IR Sensor (FC 51) Fig-2: Working principle of IR sensor 2.2 Ultrasonic Sensor Ultrasonic sensor (HC-SR04) utilizes sonar to measure the range of an object. Its range is to find the distance of any object from 2cm to 400cm. This sensor uses sonar to detect the objects. This sensor widely used in robotics to build the robots, aircrafts, in order to avoid the obstacle. The hardware component consists of both ultrasonictransmitter and receiver module. The sensor module consists of 4 pins namely: trigger, echo, power supply and ground. Fig-3: (a) Ultrasonic sensor HC-SR04, (b) Working principle of Ultrasonic Sensor [3]
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 699 The figure 3 shows ultrasonic image and working principle of ultrasonic sensor. The distance between the source and target of echo pin and time taken to reflect back from echo pin considered. The ultrasonic sensor requires a pulse of high (5V) for 10μS. This sequentially initiates the ultrasonic sensor and it sends 8 cycles of 40 kHz. Then, it waits to receive the reflected ultrasonic signal from the obstacle [4]. To obtain the distance of the object the widthof echo pin is measured as follows: Time=Width of Echo pulse in microseconds or the speed of the sound may also be considered.  Distance in centimeters = Time / 58,  Distance in inches= Time / 148. 2.3 LASER Sensor The LASER sensor (KY-008) gives a smallinternbeamor emits a dot shaped, red laser beam. The figure 4shows laser sensor. This module has three pins i.e. From left to right pin 1 is signal output, pin number 2 is +5 volts (DC), and pin 3 is GND. Using this system, we have experimentedalasersensor which has both transmitter and receiver units into one module [5]. This sensor theoretically measures up to 1000 cm or 10000 mm. Fig-4: Laser sensor (KY008) Laser is basically concentrated on light source. LDR detector (Light Dependent Resistor), Photo diode & photo transistors are used to detect lasers. 2.4 LDR detector To detect a laser, a light dependent resistor (LDR) is needed [6]. An LDR is a device which has a resistance that varies according to the amount of light falling on its surface. The LDR detector is as shown in fig 5. . Fig-5: LDR and circuit symbol When light hits the LDR, the LED will light up. The variable resistor is used to fine tune the amount of light needed to activate the LDR detector. 2.5 ARDUINO UNO Board  HARDWARE Arduino board designs use a variety of microprocessors and controllers. It consists of 14 input/output pins, 6 analog inputs, 16MHz crystal oscillators, USB connections, a power jack and reset button. The Arduino Uno is microcontroller is based on the Atmega328. Fig-6: ARDUINO UNO board [6] The Arduino Uno board is as shown in figure 6. The Arduino Uno can power via the USB connection or with an external power supply. However, the pin may supply less than 5V and the board may be unstable. If using more than 12V the voltage regulator may over heat and damage the board. The Arduino Uno power pinsare Vin, 5V, 3VandGND.  SOFTWARE Arduino Uno is open source project to which any hobbyist can connect for Atmega chips. In this softwarecode can be written in either c or java script. A program is written on the IDE Arduino is called a sketch. Arduino programs are divided into 3 parts  Structure  Values  Functions Fig-7: Sketch window for Arduino IDE
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 700 The fig 7 shows sketch window used to write the code for Arduino IDE. The header filescan be includedinthis window [7]. The Arduino Uno board is renamed with a specified name and saved in the Arduino file.Itiscompiled,if any errors are occurred it is corrected andthiscorrectedand this code is further uploaded to the Arduino Uno board [8]. 3. IMPLENTATION OF SENSORS The simple realization of all sensor work done by ARDUINO UNO with IDE software. The implementation process is mentioned below with all the sensors. 3.1 Implementation of Ultrasonic sensor The below fig 8 showsthe block diagramofArduino Uno board is connected with ultrasonic sensor. Ultrasonic sensor sends the sound pulse through trig pin to an object and receives back from echo pin and passes to Arduino board. Fig-8: Block diagram of ultrasonic sensor The algorithm has developed to find the distance of an obstacle in the IDE software. Once the algorithm is developed, the code is verified and uploaded to the board using IDE software. The LED is connected with Arduino to glow if any obstacle is present or not. In practical, the ultrasonic sensor measures the distance range up to 315 cm and the angle is 30 degree and operating voltage from 3.3V to 5V. Fig-9: Experimental setup of ultrasonic sensor 3.2 Implementation of IR sensor Fig -10: Block diagram of IR sensor The below fig 10 shows block diagram of IR sensor and Arduino board. The IR sensor has both transmitter and receiver. Transmitter LED sends the signal which will find the obstacle and reflected back from the receiver LED. The below figure 11 shows an Experimental setup of IR sensor. The algorithm was developed for finding the distance of an object. The code was verified and uploaded through IDE software. The IR sensor measuresthe distanceupto30cmor 300mm and operating voltage from 3.3V to 5V. Fig-11: Experimental setup of IR sensor 3.3 Implementation of LASER sensor Fig-12: Block diagram of laser sensor The above figure 12 shows block diagram of laser sensor using Arduino board. LASER sensor has both sensor and detector for finding the obstacle. The LASER light has to fall on the LDR detector.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 701 Fig-13: Experimental setup of LASER sensor The figure 13 shows experimental setup of LASER sensor. This sensor gives digital output like 0 or 1. If the obstacle is present, the output will be 1 and if the obstacle is not present the output will be 0. The output is monitored through the serial monitor of the Arduino IDE software. The laser will not sense the obstacle in wider angle. It isanarrow angle detector. It measures the distance up to 1000cm or 10000mm. The table 1 shows all sensors features like ultrasonic sensor, IR sensor, LASER sensor. Table-1: Features of distance measurement sensors Features Ultrasonic sensor IR sensor LASER sensor Model name HCSR04 FC 51 KY008 Wavelength 75nm 700nm to 1mm 650nm Power Delivered +5 V DC 3.3V-5V 5V(DC) Operational Current 15mA at 3.3 V ,~23 mA at 5.0V: ~43 mA 30mA Frequency 40KHz 35KHz 30 KHz Efficient Angle <150 <150 <150 Calculating Angle 300 450 00 Pulse Width of Trigger Input 10µS - +ve single TTL pulse Aspect 45mm x 20mm x 15mm 4.5cm (L) x 1.4 cm (W) x 0.7cm (H) 18.5mm x 15mm 4. RESULTS AND DISCUSSION The results were discussed by comparing all the sensors output with respect to distance for both indoor and outdoor environment. The light intensity is measured through the luminous meter (lux) for all the sensors with distance. The results were plotted. Chart-1: Distance measured with Voltage The chart-1 shows the comparison of voltage and distance for all the three sensors. To check which sensor is more suitable for distance measurement, the light intensity is measured for both indoor and outdoor environment. So, those results show that the ultrasonic sensor is more suitable for both indoor and outdoor environment to measure the distance. With that value the results were plotted for both indoor and outdoor environment. 5. CONCLUSION By comparing all the sensors this paper explained that ultrasonic sensor with respecttodistanceand voltage is more suitable for obstacle detectioninquadcopter for both indoor and outdoor environment. In practical the ultrasonic sensor measures up to 315 cm or 3150 mm with angle 30 degree. The disadvantages of IR sensor measured less distance and the LASER sensor measuredupto1000cm, but the angle is narrow. To connect LASER sensor two Arduino board is required. Because of this reason theLASER sensor is less used for obstacle detection. So, compared to both IR and LASER sensor the Ultrasonic is more suitablefor obstacle detection. ACKNOWLEDGEMENT REFERENCES [1] Rajan P Thomas, Jithin K K, Hareesh K S, Habeeburahman C A, Jithin Abraham,“ Range Detection based on Ultrasonic Principle”, February 2014. The authors would like to thank the Director, Mr. Jitendra J Jadhav CSIR-National Aerospace Laboratories for his persistence to carry out the work and Dr. Satish Chandra, Head Structural Technologies Division (STTD) for providing all the facilities for completing this work. My Special thanksto Mr. Aravindu B, Technicalofficer, Structural Technologies Division (STTD), CSIR-National Aerospace Laboratories, for their help.
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 04 Issue: 12 | Dec-2017 www.irjet.net p-ISSN: 2395-0072 © 2017, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 702 [2] Kirtan Gopal Panda*, Deepak Agrawal, Arcade Nshimiyimana, Ashraf Hossain, “The effects of environment on accuracy of ultrasonic sensor operates in millimetre range”, 20 February 2016. [3] Ultrasonic ranging module HC-SR04 datasheet[online] accessed on 23/08/2016 http://users.ece.utexas.edu/~valvano/Data sheets/HCSR04b.pdf. [4] H. He, and J. Liu, “The design of ultrasonic distance measurement system based on S3C2410,” Proceedings of the IEEE International Conference on Intelligent Computation Technology and Automation, Oct. 2008. [5] Shridevi A Mali1, G Sravanthi2*, Siva Subba Rao P3, Raja S3,Sushma S J1, A R Reddy2, Rohith P Maben3, “An Algorithm For Obstacle Avoidance Controller Using Ultrasonic Sensor For Mini Aircraft Applications” International Journal of Engineering Technology, Management and Applied Sciences, , Volume 5,Issue 3,March 2017. [6] “Arduino Uno” https://en.wikipedia.org/ Wiki/Arduino accessed on 14/10/2017. [7] G Sravanthi1, Shridevi A Mali2, Siva Subba Rao P3, Intelligent Landing Technique Using Ultrasonic Sensor for Mav Applications, International Journal Of Pure And Applied Mathematics, Volume 114, No. 12 2017 . [8] P. Riseborough, “Automatic Take-Off and Landing Control for Small UAV’s”. [9] PankajAkuala, Ananda CM Dr Cm, “IR and Ultrasonic Sensors Characterization to aid in Altitude estimation duringlanding of MAV”, 3rd InternationalConferenceon Recent Advances in Design, DevelopmentandOperation of MAV.