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: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1991
IoT based route assistance for visually challenged
P.Bhavishya1, E.Pavithra2, V.Nivetha3, R.Vidya Prakash4
1, 2, 3 Student, Dept. of Computer Science and Engineering, R.M.K Engineering College, Tamil Nadu, India.
4 Asst. Professor, Dept. of Computer Science and Engineering, R.M.K Engineering College, Tamil Nadu, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The intelligent devices have taken us to a
convenient and fashionable era, however while we use a
pedometer to calculate the number of steps, the blind even
do not have the ability to walk independently. There is no
doubt that they are eager for convenience and freedom
based on this, we propose an intelligent system that assists
the blind in walking. The system consists of three ultrasonic
sensors (attached to a cane) which are not used to just
detect the obstacles but the visually challenged will be
directed in the direction (front/right/left) which has no
obstacles, when other two directions are blocked by an
obstacle. Or when there is an obstacle in only one direction
then the distance of other two directions will be calculated
and he/she will be directed to go in a direction at which the
distance is longer. The Mq2 gas sensor is also appended to
the system to warn the user in case he/she is too drunk and
make them wary.
Key Words: blind, visually challenged, HC Sr04 ultrasonic,
Mq2 gas sensor.
1. INTRODUCTION
According to the statistics of the survey that has been
conducted by World Health Organization 39 million
people are blind, 285 million people are visually impaired
[1]. The cardinal challenges faced by them are mobility
and navigation. The development and popularization of
smart devices are bringing us to a convenient and fashion
epoch, we should be aware that while many people enjoy
the convenience of technology services and use the step-
counting software to show off their steps, many blind
people can’t walk freely. At present, the cane and
wheelchair do not bring convenience to them. They need
the help of the chaperone to walk by contraries.. The
utility model is matched with a multifunctional walking
stick with alcoholic and Ultrasonic sensors. This system
can assist the blind to walk, help them avoid the obstacles
and lead them in a direction that doesn’t have obstacles
with the help of a buzzer tone from single buzzer having
sounds unique in each direction i.e., for each direction left,
right and straight three different buzzer tones are
programmed instead of using three different buzzers.
Therefore it is more reliable and system has less
hardware.
2. THE PROPOSED SYSTEM
2.1 A System Overview
In our proposed system, the system consists of three
ultrasonic sensors (unlike the models that have been
depicted in [2] and [3] which have only one ultrasonic
sensor which cannot recognize any terrain changes)by
which the direction of the blind people can be easily
directed to the correct path by detecting the obstacles
present around them. In this system, there is also use of
alcoholic sensor so that we can find whether he/she has
drunken or not. To differentiate the direction in which the
person needs to travel to avoid obstacles, we have the
buzzer with different frequency tones using tone function.
So for each different direction that the arduino
programming calculates based on the distance between
obstacle and the cane, the blind person will hear different
tones. For instance, if the stick calculates the direction to
travel is right, then a tone unique to that direction will ring
from the buzzer.
Fig1: the cane with ultrasonic sensors and buzzer attached
The following are the components involved in the
proposed visually challenged route assistance.
1. Arduino Uno: The Arduino Uno is a
microcontroller board based on the ATmega328.
It has 14 digital input/output pins (of which 6 can
be used as PWM outputs), 6 analog inputs, a 16
MHz ceramic resonator, a USB connection, a
power jack, an ICSP header, and a reset button.
Arduino can send and receive the data to most
devices, and can also command electronic devices
through internet. The software program used to
program the Arduino UNO board is simplified C++
[4].
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1992
2. Ultrasonic Sensor: Ultrasonic sensor is a sensor
that works on principle that is akin to sonar or
radar. It generates high frequency sound and
calculates the time interval between the sending
of signal and the receiving of echo. For this
reason, ultrasonic sensors can be employed for
measuring the distance. Ultrasonic sensors have
been used due to their high precision within a
shorter distance and resistance to external
disturbances such as vibration and
electromagnetic interference [5]. HC-SR04
ultrasonic sensor consists of a control module,
transmitter and a receiver. [6]The primary
reasons to use Ultrasonic sensors are that they
are light weight and compact, give high amount of
sensitivity and accuracy in detecting objects
compared to other sensors popular like the IR
sensors which fail in certain cases like surfaces,
light changes etc. as stated in [7].
3. Gas sensor: The Grove - Gas Sensor (MQ2) module
is useful for gas leakage detection (home and
industry). It is suitable for detecting H2, LPG, CH4,
CO, Alcohol, Smoke or Propane. Due to its high
sensitivity and fast response time, measurement
can be taken as soon as possible. The sensitivity of
the sensor can be adjusted by potentiometer.
4. Buzzer: The buzzer is used to give alerts to the
user by producing noises that differ from each
other in frequencies.
Fig2: Labeled diagram of Arduino Uno
Fig3: Ultrasonic sensor HC-SR04 [8]
3. DISTANCE AND DURATION CALCULATION
Each US sensor consists of four pins, as seen in fig3.
 VCC: +5V supply
 Trig: Trigger input to the sensor. Microcontroller
will apply a trigger pulse of 10 ms [microsecond]
to the HC SR04 module.
 Echo: The echo output of the sensor. The
microcontroller reads this pin either to find the
distance or detect obstacle
 Gnd: ground
The following is the working principle of HC-SR04 sensor
A trigger pulse of at least 10ms should be transmitted to
the Trig pin of sensor to start the ranging (pulse input). The
input given to the trigger pin is the pulse generated after
detecting the obstacle. Then the sensor will send out eight
40 kHz automatically and waits for the rising edge output
to be generated at the Echo pin. The time gap between the
raising edge and the falling edge is the duration. This
duration is the time taken by the pulse from the sensor to
hit the obstacle and reach back the sensor. This pulse
travels at a constant baud rate of 9600. The time for which
the echo pulse remains low gives the time taken by the
ultrasonic pulse to travel twice the distance [9].
Fig4: Timing diagram of HC SR04 US sensor
The output of the echo pin eventually gives us the final
output i.e., the buzzer tone, after calculating the duration
and distance.
After the duration in ms is obtained, then the distance
will be calculated using the below formula
Distance=time * Sound speed/2 (1)
Here, total distance is divided by 2 because signal travels
from HC-SR04 to object and returns to the module HC-
SR04 and sound speed is calculated using baud rate.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1993
The speed of the sound is approximately 340m/s or 0.034
cm/ms
Now the equation (1) becomes,
Distance = time * 0.034/2 (2)
Fig5. Using HC SR04 in arduino [10]
3.1 Working of buzzer alert
 The ultrasonic sensor can be programmed to detect
the obstacles up to 400cm. If left and right sensors
are blocked then buzzer will alert with frequency
tone of 1000 Hz, indicating that the person needs to
travel in the forward direction.
 If left and front sensors are blocked then buzzer
will alert with frequency tone of 5000 Hz. This
signals the person to go in the right direction.
 If right and front sensors are blocked then buzzer
will alert with frequency tone of 9000 Hz. So, the
person now needs to in the left direction.
 If he/she has drunken over the limit buzzer will
alert with a frequency of 6000 Hz with 500 ms
delay.
In the below figure, thr is the distance range that can be
programmed into the ultrasonic sensor and the arduino
Uno. This range can vary between 2 cm to 400 cm. The 3V
in the Mq2 gas sensor is the maximum limit set to identify
if the person is drunk or not. The sensor sensitivity can be
adjusted by the built-in potentiometer. The sensor outputs
the voltage that is proportional to the concentration of gas.
This output generated by Mq2 sensor is an analog signal
that can be read with the help of analog input of the
Arduino Uno or a digital output that can be read using the
input (digital) of the Arduino.
Fig6: Architecture of the proposed system
3.2 Positioning and guiding
The hardware consists of a cane, 3 ultrasonic sensors
hcsr04, along with an arduino uno chip and Mq2 alcoholic
sensor .The three sensors will be placed in the bottom of
the cane each pointing in the direction front, left and right.
The 4 pins of each sensor, alcoholic sensor will be
connected to the arduino chip and it is programmed as
follows.
When a person is walking and encounters obstacles
from any two sides, then it calculates the duration of all the
sides using three different sensors. From eq (1), the
distance can be calculated. The cane directs the user to go
in the direction that has long distance i.e., if the person is
blocked from left and right sides by obstacles then it
indicates the user to move in forward direction with the
buzzer tone. And if the person gets blocked by three sides,
then also he/she can get an indication
4. FURURE WORK
Modifications like giving the direction to the user through
pre-recorded voice, instead of buzzer tones can be done.
Further we are working on the other incorporations into
the smart cane like Voice recognition and Global
Positioning System, so that through voice the person can
enter the destination where they wish to go and the cane
will direct them, without the need of smart phone/device
and at a low cost.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1994
5. CONCLUSION
To sum up, this smart cane can act as a complete guide for
blind people to walk with the help of a single stick without
any complex hardware or software incorporated into it.
This simple cane, is not used to just detect obstacles
present in any direction and alert the person , but uses the
distance calculation to give the optimum direction(by
detecting obstacles) in which the person can proceed.
There is only use of one buzzer for every direction that
makes different sounds for left, right, front instead of using
three different buzzers. A battery powers the cane. This
cane not only shows the direction, but can also indicates
the person if he/she is blocked on three sides. Its
additional inclusion of alcohol sensor helps to warn the
person if he is too drunk. It is also developed to be cost
efficient and to be reachable to every visually impaired
person.
REFERENCES
1. Global data on blindness. Facts sheet, Key Facts of
the World Health Organization; June 2012.
2. Vaibhav, S., et al, “Smart’ Cane for the Visually
Impaired: Design and Controlled Field Testing of
an Affordable Obstacle Detection System”,
International Conference on Mobility and
Transport for Elderly and Disabled Persons.,
2010.
3. Gaikwad, A. G., & Waghmare, H. K., “Smart Cane
Indicating a Safe free Path to Blind People Using
Ultrasonic Sensor”, International Journal on
Recent and Innovation Trends in Computing and
Communication, Feb. 2016, Volume 4, Issue 2, pp.
179-183.
4. P. D. Minns,” C Programming For the PC the MAC
and the Arduino Microcontroller System.”, Author
House, 2013
5. Sakhardande, J., Pattanayak, P., & Bhowmick, M.,
“Smart Cane Assisted Mobility for the Visually
Impaired”, International Journal of Computer,
Electrical, Automation, Control and Information
Engineering Vol:6, No:10, 2012, pp. 1262-1265.J.
Clerk Maxwell, A Treatise on Electricity and
Magnetism, 3rd ed., vol. 2. Oxford: Clarendon,
1892, pp.68-73.
6. Navya Amin, Markus BOrschbach, “Quality of
obstacle distance measurement and precision of
two Computer Vision-based obstacle detection
approaches”, International Conference on Smart
Sensors and Systems (IC-SSS),2015,ISBN: 978-1-
4673-9328-7
7. D. Jain, “Path-guided indoor navigation for the
visually impaired using minimal building
retrofitting.” Proceedings of ACM ASSETS, 2014..
8. “Hc-sr04 ultrasonic sensor,”
http://www.electroschematics.com/8902/ hc-
sr04-datasheet/.
9. Rajesh Kannan Megalingam, Aparna Nambissan,
Anu Thambi, Anjali Gopinath, Megha Nanda
Kumar, “Sound and touch based smart cane:
Better walking experience for visually
challenged”, IEEE International Humanitarian
Technology Conference 2014.
10. “How to use ultra-sonic sensor HC SR04 in
arduino”, www.c-sharpcorner.com

More Related Content

What's hot

Obstacle Detctor Robot report
Obstacle Detctor Robot reportObstacle Detctor Robot report
Obstacle Detctor Robot reportNikita Kaushal
 
Autonomous navigation robot
Autonomous navigation robotAutonomous navigation robot
Autonomous navigation robotIRJET Journal
 
IRJET- Design and Implementation of Driverless Car using Machine Learning
IRJET- Design and Implementation of Driverless Car using Machine LearningIRJET- Design and Implementation of Driverless Car using Machine Learning
IRJET- Design and Implementation of Driverless Car using Machine LearningIRJET Journal
 
Bluetooth controller Human detection car.
Bluetooth controller Human detection car.Bluetooth controller Human detection car.
Bluetooth controller Human detection car.Md Mintu Pk
 
IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...
IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...
IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...IRJET Journal
 
Security System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor TechnologySecurity System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor TechnologyIOSR Journals
 
Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...eSAT Journals
 
IRJET- Virtual Eye for the Visually Challenged
IRJET-  	  Virtual Eye for the Visually ChallengedIRJET-  	  Virtual Eye for the Visually Challenged
IRJET- Virtual Eye for the Visually ChallengedIRJET Journal
 
Secure Surveillance Using Virtual Intelligent Agent With Dominating
Secure Surveillance Using Virtual Intelligent Agent With DominatingSecure Surveillance Using Virtual Intelligent Agent With Dominating
Secure Surveillance Using Virtual Intelligent Agent With Dominatingsindhuls
 
Navigation system for blind using GPS & GSM
Navigation system for blind using GPS & GSMNavigation system for blind using GPS & GSM
Navigation system for blind using GPS & GSMPrateek Anand
 
IRJET- Home Surveillance Without using CCTV Camera
IRJET-  	  Home Surveillance Without using CCTV CameraIRJET-  	  Home Surveillance Without using CCTV Camera
IRJET- Home Surveillance Without using CCTV CameraIRJET Journal
 
Project Report Distance measurement system
Project Report Distance measurement systemProject Report Distance measurement system
Project Report Distance measurement systemkurkute1994
 
Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...
Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...
Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...IJERA Editor
 
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsAlert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsIJERA Editor
 
Arduino Blind Aid
Arduino Blind AidArduino Blind Aid
Arduino Blind AidRohithND
 
Characteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance MeasurementCharacteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance MeasurementIRJET Journal
 
IRJET - SMS based Accident Alert with GPS Coordinates
IRJET -  	  SMS based Accident Alert with GPS CoordinatesIRJET -  	  SMS based Accident Alert with GPS Coordinates
IRJET - SMS based Accident Alert with GPS CoordinatesIRJET Journal
 
Emergency vehicle detection system using rf module and ultrasonic sensor
Emergency vehicle detection system using rf module and ultrasonic sensorEmergency vehicle detection system using rf module and ultrasonic sensor
Emergency vehicle detection system using rf module and ultrasonic sensorIRJET Journal
 

What's hot (20)

Obstacle Detctor Robot report
Obstacle Detctor Robot reportObstacle Detctor Robot report
Obstacle Detctor Robot report
 
Autonomous navigation robot
Autonomous navigation robotAutonomous navigation robot
Autonomous navigation robot
 
IRJET- Design and Implementation of Driverless Car using Machine Learning
IRJET- Design and Implementation of Driverless Car using Machine LearningIRJET- Design and Implementation of Driverless Car using Machine Learning
IRJET- Design and Implementation of Driverless Car using Machine Learning
 
Bluetooth controller Human detection car.
Bluetooth controller Human detection car.Bluetooth controller Human detection car.
Bluetooth controller Human detection car.
 
IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...
IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...
IRJET - Enhancing Indoor Mobility for Visually Impaired: A System with Real-T...
 
Security System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor TechnologySecurity System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor Technology
 
Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...Intelligent vehicle control based on identification of road signs by solar po...
Intelligent vehicle control based on identification of road signs by solar po...
 
Smart ambulance
Smart ambulanceSmart ambulance
Smart ambulance
 
IRJET- Virtual Eye for the Visually Challenged
IRJET-  	  Virtual Eye for the Visually ChallengedIRJET-  	  Virtual Eye for the Visually Challenged
IRJET- Virtual Eye for the Visually Challenged
 
Secure Surveillance Using Virtual Intelligent Agent With Dominating
Secure Surveillance Using Virtual Intelligent Agent With DominatingSecure Surveillance Using Virtual Intelligent Agent With Dominating
Secure Surveillance Using Virtual Intelligent Agent With Dominating
 
Spark
SparkSpark
Spark
 
Navigation system for blind using GPS & GSM
Navigation system for blind using GPS & GSMNavigation system for blind using GPS & GSM
Navigation system for blind using GPS & GSM
 
IRJET- Home Surveillance Without using CCTV Camera
IRJET-  	  Home Surveillance Without using CCTV CameraIRJET-  	  Home Surveillance Without using CCTV Camera
IRJET- Home Surveillance Without using CCTV Camera
 
Project Report Distance measurement system
Project Report Distance measurement systemProject Report Distance measurement system
Project Report Distance measurement system
 
Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...
Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...
Controlling and Reducing of Speed for Vehicles Automatically By Using Rf Tech...
 
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsAlert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
 
Arduino Blind Aid
Arduino Blind AidArduino Blind Aid
Arduino Blind Aid
 
Characteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance MeasurementCharacteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance Measurement
 
IRJET - SMS based Accident Alert with GPS Coordinates
IRJET -  	  SMS based Accident Alert with GPS CoordinatesIRJET -  	  SMS based Accident Alert with GPS Coordinates
IRJET - SMS based Accident Alert with GPS Coordinates
 
Emergency vehicle detection system using rf module and ultrasonic sensor
Emergency vehicle detection system using rf module and ultrasonic sensorEmergency vehicle detection system using rf module and ultrasonic sensor
Emergency vehicle detection system using rf module and ultrasonic sensor
 

Similar to IoT-based route assistance for visually impaired

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- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET Journal
 
Sensor Based Blind Stick
Sensor Based Blind StickSensor Based Blind Stick
Sensor Based Blind StickGagandeep Singh
 
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...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 NodemcuIRJET Journal
 
IRJET- Intruder Detection Security System
IRJET- Intruder Detection Security SystemIRJET- Intruder Detection Security System
IRJET- Intruder Detection Security SystemIRJET Journal
 
IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET Journal
 
IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)
IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)
IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)SreekarV
 
BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONIRJET Journal
 
IVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density MeasurementIVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density MeasurementIRJET Journal
 
Gesture Control Robot using Arduino
Gesture Control Robot using ArduinoGesture Control Robot using Arduino
Gesture Control Robot using Arduinoijtsrd
 
LPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind Person
LPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind PersonLPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind Person
LPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind Personpaperpublications3
 
Annunciator for Blind Person Using Ultrasonic Sensor
Annunciator for Blind Person Using Ultrasonic SensorAnnunciator for Blind Person Using Ultrasonic Sensor
Annunciator for Blind Person Using Ultrasonic Sensorpaperpublications3
 
IOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEMIOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEMIRJET Journal
 
ILLEGAL LOGGING DETECTION BASED ON ACOUSTICS
ILLEGAL LOGGING DETECTION BASED ON ACOUSTICSILLEGAL LOGGING DETECTION BASED ON ACOUSTICS
ILLEGAL LOGGING DETECTION BASED ON ACOUSTICSIRJET Journal
 
IRJET - GSM based Fire Extinguishing System
IRJET -  	  GSM based Fire Extinguishing SystemIRJET -  	  GSM based Fire Extinguishing System
IRJET - GSM based Fire Extinguishing SystemIRJET Journal
 

Similar to IoT-based route assistance for visually impaired (20)

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- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
 
Sensor Based Blind Stick
Sensor Based Blind StickSensor Based Blind Stick
Sensor Based Blind Stick
 
4th-Yr-PROJECT-REPORT
4th-Yr-PROJECT-REPORT4th-Yr-PROJECT-REPORT
4th-Yr-PROJECT-REPORT
 
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
IRJET- Design of a Portable Contact-Less Tachometer using Infrared Sensor for...
 
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- Intruder Detection Security System
IRJET- Intruder Detection Security SystemIRJET- Intruder Detection Security System
IRJET- Intruder Detection Security System
 
IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using Arduino
 
IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)
IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)
IJARCCE4J s govinda Public Transport Assistant for Visually Impaired (PuTAVI)
 
BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTION
 
IVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density MeasurementIVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density Measurement
 
Gesture Control Robot using Arduino
Gesture Control Robot using ArduinoGesture Control Robot using Arduino
Gesture Control Robot using Arduino
 
ULTRASONIC PERIPATETIC SCANNER FOR AUTONOMOUS TEST BENCH USING RASPBERRY Pi
ULTRASONIC PERIPATETIC SCANNER FOR AUTONOMOUS TEST BENCH USING RASPBERRY PiULTRASONIC PERIPATETIC SCANNER FOR AUTONOMOUS TEST BENCH USING RASPBERRY Pi
ULTRASONIC PERIPATETIC SCANNER FOR AUTONOMOUS TEST BENCH USING RASPBERRY Pi
 
LPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind Person
LPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind PersonLPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind Person
LPC2138 Based Temperature Compensated Ultrasonic Ranging For Blind Person
 
B010320711
B010320711B010320711
B010320711
 
Annunciator for Blind Person Using Ultrasonic Sensor
Annunciator for Blind Person Using Ultrasonic SensorAnnunciator for Blind Person Using Ultrasonic Sensor
Annunciator for Blind Person Using Ultrasonic Sensor
 
IOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEMIOT ASSET TRACKING SYSTEM
IOT ASSET TRACKING SYSTEM
 
Reverse car-parking
Reverse car-parkingReverse car-parking
Reverse car-parking
 
ILLEGAL LOGGING DETECTION BASED ON ACOUSTICS
ILLEGAL LOGGING DETECTION BASED ON ACOUSTICSILLEGAL LOGGING DETECTION BASED ON ACOUSTICS
ILLEGAL LOGGING DETECTION BASED ON ACOUSTICS
 
IRJET - GSM based Fire Extinguishing System
IRJET -  	  GSM based Fire Extinguishing SystemIRJET -  	  GSM based Fire Extinguishing System
IRJET - GSM based Fire Extinguishing System
 

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

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
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
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
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
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
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
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
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
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
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
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
 

Recently uploaded (20)

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 Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
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
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
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
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
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
 
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 )
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
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
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
★ 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
 
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
 

IoT-based route assistance for visually impaired

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1991 IoT based route assistance for visually challenged P.Bhavishya1, E.Pavithra2, V.Nivetha3, R.Vidya Prakash4 1, 2, 3 Student, Dept. of Computer Science and Engineering, R.M.K Engineering College, Tamil Nadu, India. 4 Asst. Professor, Dept. of Computer Science and Engineering, R.M.K Engineering College, Tamil Nadu, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The intelligent devices have taken us to a convenient and fashionable era, however while we use a pedometer to calculate the number of steps, the blind even do not have the ability to walk independently. There is no doubt that they are eager for convenience and freedom based on this, we propose an intelligent system that assists the blind in walking. The system consists of three ultrasonic sensors (attached to a cane) which are not used to just detect the obstacles but the visually challenged will be directed in the direction (front/right/left) which has no obstacles, when other two directions are blocked by an obstacle. Or when there is an obstacle in only one direction then the distance of other two directions will be calculated and he/she will be directed to go in a direction at which the distance is longer. The Mq2 gas sensor is also appended to the system to warn the user in case he/she is too drunk and make them wary. Key Words: blind, visually challenged, HC Sr04 ultrasonic, Mq2 gas sensor. 1. INTRODUCTION According to the statistics of the survey that has been conducted by World Health Organization 39 million people are blind, 285 million people are visually impaired [1]. The cardinal challenges faced by them are mobility and navigation. The development and popularization of smart devices are bringing us to a convenient and fashion epoch, we should be aware that while many people enjoy the convenience of technology services and use the step- counting software to show off their steps, many blind people can’t walk freely. At present, the cane and wheelchair do not bring convenience to them. They need the help of the chaperone to walk by contraries.. The utility model is matched with a multifunctional walking stick with alcoholic and Ultrasonic sensors. This system can assist the blind to walk, help them avoid the obstacles and lead them in a direction that doesn’t have obstacles with the help of a buzzer tone from single buzzer having sounds unique in each direction i.e., for each direction left, right and straight three different buzzer tones are programmed instead of using three different buzzers. Therefore it is more reliable and system has less hardware. 2. THE PROPOSED SYSTEM 2.1 A System Overview In our proposed system, the system consists of three ultrasonic sensors (unlike the models that have been depicted in [2] and [3] which have only one ultrasonic sensor which cannot recognize any terrain changes)by which the direction of the blind people can be easily directed to the correct path by detecting the obstacles present around them. In this system, there is also use of alcoholic sensor so that we can find whether he/she has drunken or not. To differentiate the direction in which the person needs to travel to avoid obstacles, we have the buzzer with different frequency tones using tone function. So for each different direction that the arduino programming calculates based on the distance between obstacle and the cane, the blind person will hear different tones. For instance, if the stick calculates the direction to travel is right, then a tone unique to that direction will ring from the buzzer. Fig1: the cane with ultrasonic sensors and buzzer attached The following are the components involved in the proposed visually challenged route assistance. 1. Arduino Uno: The Arduino Uno is a microcontroller board based on the ATmega328. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header, and a reset button. Arduino can send and receive the data to most devices, and can also command electronic devices through internet. The software program used to program the Arduino UNO board is simplified C++ [4].
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1992 2. Ultrasonic Sensor: Ultrasonic sensor is a sensor that works on principle that is akin to sonar or radar. It generates high frequency sound and calculates the time interval between the sending of signal and the receiving of echo. For this reason, ultrasonic sensors can be employed for measuring the distance. Ultrasonic sensors have been used due to their high precision within a shorter distance and resistance to external disturbances such as vibration and electromagnetic interference [5]. HC-SR04 ultrasonic sensor consists of a control module, transmitter and a receiver. [6]The primary reasons to use Ultrasonic sensors are that they are light weight and compact, give high amount of sensitivity and accuracy in detecting objects compared to other sensors popular like the IR sensors which fail in certain cases like surfaces, light changes etc. as stated in [7]. 3. Gas sensor: The Grove - Gas Sensor (MQ2) module is useful for gas leakage detection (home and industry). It is suitable for detecting H2, LPG, CH4, CO, Alcohol, Smoke or Propane. Due to its high sensitivity and fast response time, measurement can be taken as soon as possible. The sensitivity of the sensor can be adjusted by potentiometer. 4. Buzzer: The buzzer is used to give alerts to the user by producing noises that differ from each other in frequencies. Fig2: Labeled diagram of Arduino Uno Fig3: Ultrasonic sensor HC-SR04 [8] 3. DISTANCE AND DURATION CALCULATION Each US sensor consists of four pins, as seen in fig3.  VCC: +5V supply  Trig: Trigger input to the sensor. Microcontroller will apply a trigger pulse of 10 ms [microsecond] to the HC SR04 module.  Echo: The echo output of the sensor. The microcontroller reads this pin either to find the distance or detect obstacle  Gnd: ground The following is the working principle of HC-SR04 sensor A trigger pulse of at least 10ms should be transmitted to the Trig pin of sensor to start the ranging (pulse input). The input given to the trigger pin is the pulse generated after detecting the obstacle. Then the sensor will send out eight 40 kHz automatically and waits for the rising edge output to be generated at the Echo pin. The time gap between the raising edge and the falling edge is the duration. This duration is the time taken by the pulse from the sensor to hit the obstacle and reach back the sensor. This pulse travels at a constant baud rate of 9600. The time for which the echo pulse remains low gives the time taken by the ultrasonic pulse to travel twice the distance [9]. Fig4: Timing diagram of HC SR04 US sensor The output of the echo pin eventually gives us the final output i.e., the buzzer tone, after calculating the duration and distance. After the duration in ms is obtained, then the distance will be calculated using the below formula Distance=time * Sound speed/2 (1) Here, total distance is divided by 2 because signal travels from HC-SR04 to object and returns to the module HC- SR04 and sound speed is calculated using baud rate.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1993 The speed of the sound is approximately 340m/s or 0.034 cm/ms Now the equation (1) becomes, Distance = time * 0.034/2 (2) Fig5. Using HC SR04 in arduino [10] 3.1 Working of buzzer alert  The ultrasonic sensor can be programmed to detect the obstacles up to 400cm. If left and right sensors are blocked then buzzer will alert with frequency tone of 1000 Hz, indicating that the person needs to travel in the forward direction.  If left and front sensors are blocked then buzzer will alert with frequency tone of 5000 Hz. This signals the person to go in the right direction.  If right and front sensors are blocked then buzzer will alert with frequency tone of 9000 Hz. So, the person now needs to in the left direction.  If he/she has drunken over the limit buzzer will alert with a frequency of 6000 Hz with 500 ms delay. In the below figure, thr is the distance range that can be programmed into the ultrasonic sensor and the arduino Uno. This range can vary between 2 cm to 400 cm. The 3V in the Mq2 gas sensor is the maximum limit set to identify if the person is drunk or not. The sensor sensitivity can be adjusted by the built-in potentiometer. The sensor outputs the voltage that is proportional to the concentration of gas. This output generated by Mq2 sensor is an analog signal that can be read with the help of analog input of the Arduino Uno or a digital output that can be read using the input (digital) of the Arduino. Fig6: Architecture of the proposed system 3.2 Positioning and guiding The hardware consists of a cane, 3 ultrasonic sensors hcsr04, along with an arduino uno chip and Mq2 alcoholic sensor .The three sensors will be placed in the bottom of the cane each pointing in the direction front, left and right. The 4 pins of each sensor, alcoholic sensor will be connected to the arduino chip and it is programmed as follows. When a person is walking and encounters obstacles from any two sides, then it calculates the duration of all the sides using three different sensors. From eq (1), the distance can be calculated. The cane directs the user to go in the direction that has long distance i.e., if the person is blocked from left and right sides by obstacles then it indicates the user to move in forward direction with the buzzer tone. And if the person gets blocked by three sides, then also he/she can get an indication 4. FURURE WORK Modifications like giving the direction to the user through pre-recorded voice, instead of buzzer tones can be done. Further we are working on the other incorporations into the smart cane like Voice recognition and Global Positioning System, so that through voice the person can enter the destination where they wish to go and the cane will direct them, without the need of smart phone/device and at a low cost.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 1994 5. CONCLUSION To sum up, this smart cane can act as a complete guide for blind people to walk with the help of a single stick without any complex hardware or software incorporated into it. This simple cane, is not used to just detect obstacles present in any direction and alert the person , but uses the distance calculation to give the optimum direction(by detecting obstacles) in which the person can proceed. There is only use of one buzzer for every direction that makes different sounds for left, right, front instead of using three different buzzers. A battery powers the cane. This cane not only shows the direction, but can also indicates the person if he/she is blocked on three sides. Its additional inclusion of alcohol sensor helps to warn the person if he is too drunk. It is also developed to be cost efficient and to be reachable to every visually impaired person. REFERENCES 1. Global data on blindness. Facts sheet, Key Facts of the World Health Organization; June 2012. 2. Vaibhav, S., et al, “Smart’ Cane for the Visually Impaired: Design and Controlled Field Testing of an Affordable Obstacle Detection System”, International Conference on Mobility and Transport for Elderly and Disabled Persons., 2010. 3. Gaikwad, A. G., & Waghmare, H. K., “Smart Cane Indicating a Safe free Path to Blind People Using Ultrasonic Sensor”, International Journal on Recent and Innovation Trends in Computing and Communication, Feb. 2016, Volume 4, Issue 2, pp. 179-183. 4. P. D. Minns,” C Programming For the PC the MAC and the Arduino Microcontroller System.”, Author House, 2013 5. Sakhardande, J., Pattanayak, P., & Bhowmick, M., “Smart Cane Assisted Mobility for the Visually Impaired”, International Journal of Computer, Electrical, Automation, Control and Information Engineering Vol:6, No:10, 2012, pp. 1262-1265.J. Clerk Maxwell, A Treatise on Electricity and Magnetism, 3rd ed., vol. 2. Oxford: Clarendon, 1892, pp.68-73. 6. Navya Amin, Markus BOrschbach, “Quality of obstacle distance measurement and precision of two Computer Vision-based obstacle detection approaches”, International Conference on Smart Sensors and Systems (IC-SSS),2015,ISBN: 978-1- 4673-9328-7 7. D. Jain, “Path-guided indoor navigation for the visually impaired using minimal building retrofitting.” Proceedings of ACM ASSETS, 2014.. 8. “Hc-sr04 ultrasonic sensor,” http://www.electroschematics.com/8902/ hc- sr04-datasheet/. 9. Rajesh Kannan Megalingam, Aparna Nambissan, Anu Thambi, Anjali Gopinath, Megha Nanda Kumar, “Sound and touch based smart cane: Better walking experience for visually challenged”, IEEE International Humanitarian Technology Conference 2014. 10. “How to use ultra-sonic sensor HC SR04 in arduino”, www.c-sharpcorner.com