SlideShare uma empresa Scribd logo
1 de 7
Baixar para ler offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 314
Aid for Blind People using IoT
Atharv Phadnis1, Nikhil Nimbalkar2, Shubham Pagar3, K.S Charumathi4
1,2,3BE Student, Department of Information Technology Engineering , MES Pillai College of Engineering, Navi
Mumbai, India.
4Assistant Professor4, Department of Information Technology Engineering, MES Pillai College of Engineering,
Navi Mumbai, India.
----------------------------------------------------------------------***----------------------------------------------------------------
Abstract— Our Society has many specially abled people, to work for their betterment and specifically for the visually
impaired people, we have decided to lend them assistance through our project which is a combination of IoT and App
Development. Blindness is a condition in which an individual loses the ocular perception. Self-reliability and Mobility for
the visually impaired and blind people has always been a problem. Blind people face many difficulties while interacting
with their nearby environment. This paper focuses on developing a Smart Walking Stick using the arduino to help the
visually impaired people to walk more confidently by providing information about their environment. Ultrasonic sensors
are used to detect obstacles, pits that lie ahead and to alert them of the same, thereby reducing the amount of accidents
while walking. The stick is programmed to connect automatically to the Android phone using USB Serial Connection , for
giving auditory feedback to the user and also for determining the best route to be taken to reach a new location by
integrating GPS technology.
Keywords: Blind People, Arduino, Ultrasonic Sensors, GPS module, GSM module, Android app, Navigation
,Gestures
1. INTRODUCTION
1.1 Fundamentals:
Visually impaired people face difficulty while interacting and feel their environment. They have little contact with their
surroundings. Physical movement is a challenge for visually impaired people, because it can become difficult to
distinguish obstacles appearing in front of them, and they are not able to move from one place to another. They
depend on their families for mobility and financial support. Their mobility restricts them from interacting with people
and social activities. Smart walking stick is specially designed to detect obstacles which may help the blind to navigate
care easily. The audio messages will keep the user alerting constantly thereby reducing accidents. This system
presents a concept to provide a smart electronic aid for blind people, both in public and private space. The proposed
system contains the ultrasonic sensor to detect obstacles ahead using ultrasonic waves. On sensing obstacles the
sensor passes this data to the arduino. All the feedback will be given to the blind man.
1.2 Objectives:
The main aim of the system is to provide an efficient navigation aid for the blind persons which gives them a sense of
vision by providing the information about their surroundings and objects around them. Also this system provides SOS
as well as calling system. Since the smart walking stick is a simple and purely mechanical device to detect the obstacles
on the ground. This device is light in weight and portable. It provides the best travel aid for the person. The blind
person can move from one place to another independently without the others help.
1.3 Scope
Blind people face many difficulties interacting with their nearby environment. Our main aim is to provide an
environment which will help blind people to navigate, sense the obstacles, provide emergency alert for their
betterment. We have decided to lend them a helping hand through our project which is a combination of IoT and App
Development.
2. PROPOSED SYSTEM
2.1 Implementation
In the proposed system, the ultrasonic sensor is used to sense the obstacle distance from the user. This reference
distance can be used to decide whether the user can move or not. The ultrasonic sensors work on the basis of sound.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 315
The sound waves are transmitted ahead from the sensors towards the obstacle which can sense the distance up to a
distance
The sensors are placed in different locations in order to cover maximum sides possible with minimum usage of the
sensors. Generally, the blind person cannot see the objects present on the ground. So the sensor keeps track of the
ground clearance providing necessary security measures. For the ultrasonic proximity sensors, a sonic transducer is
employed to permits the interchange transmission and gathering of sound waves. The transducer emits the sonic
waves which are mirrored by an object and returned within the transducer. The ultrasonic sensor will change to
receiver mode when discharging the sound waves. The time elapsed between the emission and reception of the waves
is proportional to the gap of the object from the detector. As soon as the obstacle is detected, the microcontroller
checks if the barrier is close enough (100 cm from the user) to prevent the passage of the blind subject.
The architecture used is layered style. Two layered are used, Android and the Arduino. There are various functions in
Android. Based on functions selection, appropriate procedure calls are made. If Navigation is selected, then first the
procedure call of voice input is called, to enter the destination, then the procedure for Google Api is called to start the
navigation. If Gesture Activity is called, the procedure call for gesture recognition is done. Based on the gesture drawn,
the appropriate number is called.
Considering the second layer, as soon as the app is launched in android, the Arduino starts reading the data through all
four sensors. For each reading in ultrasonic sensors, proper procedure call is made. The procedure call for pothole
distance sensing and obstacle distance sensing are different. These sensors sense the distance and send the data
whether a pothole is detected or an obstacle is detected. If an obstacle, then the obstacle detection algorithm checks
left and right sensors. Calculating the values from all sensors it decides the appropriate direction and suggests it to the
user. The data transfer between two layers takes place via universal serial bus. The data is then received in the above
layer and thus appropriate decision is displayed as well as voice output is provided.
Thus, the Graphic user interface, Gesture detection, Navigation and display of direction becomes the part of first layer
and Arduino and ultrasonic sensors become part of second layer. The GSM and GPS module connected to arduino helps
to send the location of blind person when the SOS button on the stick is pressed.
(A) OBSTACLE DETECTION
Step 1: front_dist = distance received from sensor 2 or front sensor.
Step 2: if (front_dist >=100 && front_dist <=200)
alert that obstacle is ahead.Go to step 5
Step 3: calculate dist_right and dist_left i.e. distance from right and left sensor respectively.
Step 4: if right_dist<100 && left_dist>100
alert Turn left
else if left_dist<100 && right_dist>100
alert Turn right
else if left_dist<100 && right_dist<100
alert Path is blocked
else alert Turn anywhere
go to step 1
Step 5: check dist_front again for closeness
Step 6: if (front_dist <100)
alert obstacle is very close in front
go to step 3
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 316
Fig1: Obstacle Detection Flowchart
(B) POTHOLE DETECTION
avg_value= (sum of 10 values)/10.
max_value= maximum of initial 10 values.
fluct_value= max_value-avg_value.
Threshold= 2*fluct_value+avg
The arduino calculates distance from ground with each loop, using the readings from the ultrasonic sensor, and
compares the new value with threshold value calculated previously to check for potholes. A value greater than the
threshold value indicates the possibility of presence of a pothole ahead of the user and the arduino sends a value to the
android application to warn the user.
Fig2: Pothole Detection Flowchart
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 317
Fig. 3: System architecture for Smart Blind Stick
Fig. 4: Blind Stick Implementation
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 318
Fig 5: Obstacle Detection
Fig. 5. Pothole Detection
Fig. 7:Double Tap Navigation
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 319
Fig 8. Gesture Recognition for Calling
2.2 Test Cases:
Table 1: Google Navigation on double click
Destination Voice to Text
Destination
Navigation
Started?
Panvel
Station
“Panvel Station” Yes
CST
Station
“CST Station” Yes
Table 2: Gesture recognition for calling
Gesture
drawn
Gesture
Detected
Function called
“U” “U” call emergency contact 1
“V” “V” call emergency contact 2
“^” “^” call emergency contact 3
Table 3. Pothole Detection
Pothole Output Distance from ground Result
pothole
present
“pothole
detected”
30 accurate
pothole not
present
“pothole
detected”
27 error
pothole not
present
no output 18 accurate
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 320
Table 4: Obstacle Detection
Obstacle
from
Output Range
(cm)
Result
front “obstacle ahead” 142 accurate
front “obstacle ahead turn
anywhere”
76 accurate
front and left “turn right” 70 accurate
front
and right
“turn left” 81 accurate
front and left
and right
“turn right” 60 Error
front and left
and right
“path blocked turning
suggested”
71 accurate
3. CONCLUSION
The smart walking stick, constructed with at most accuracy, will help the blind people to move from one place to
another without others help. This could also be considered a crude way of giving the blind a sense of vision. This stick
reduces the dependency of visually impaired people on other family members, friends and guide dogs while walking
around. The proposed combination of various working units makes a real-time system that monitors the position of
the user and provides dual feedback making navigation more safe and secure. The smart stick detects objects or
obstacles in front of users and feeds warning back, in the form of voice messages rather than vibration. The advantage
of the system lies in the fact that it can prove to be a low cost solution to millions of blind people worldwide.Another
advantage of the system is that it helps the blind people in both indoor and outdoor, care-free navigation. The devices
placed in the stick makes it comfortable and easy to handle. The smart stick helps in detecting obstacles placed at a
distance in front of the user. The system is suitable for both indoor and outdoor environments. The information
regarding obstacles is given through voice alerts, eliminates the difficulty of understanding vibration patterns which
was used in earlier systems. The system is a moderate budget mobile navigational aid for the visually impaired.
REFERENCES
1. Saurav Mohapatra,Subham Rout,Varun Tripathi,Tanish Saxena ,Yepuganti Karuna”Smart Walking Stick for
Blind integrated with SOS Navigation System.” May, 2018.
2. Apur vShaha, Shubham Rewari, and Sankaradithyan Gunasekharan.“Smart Walking Stick for the Visually
Impaired People using Low Latency Communication”, January 2018
3. Mingyong Zhou, Wenyan Li, Bo Zhou.“ An IOT system design for blind”, June 2017.
4. Yufang Huang,, Yi Lin, Rongzhen Miao “ An Auxiliary Blind Guide System based on Multi-sensor Data Fusion”,
April 2017
5. Zeeshan Saquib,Suhas N Bhargav,Vishakha Murari “BlinDar: An Invisible Eye for the Blind People” ,March
2017.
6. Rashidah Funke Olanrewaju, Muhammad Luqman Azzaki Mohd Radzi, Mariam Rehab “ iWalk: Intelligent
Walking Stick for Visually Impaired Subjects” , February 2017.
7. Mounir Bousbia-Salah, Mohamed Fezari “A Navigation Tool for Blind People” , January 2017
8. Ayat Nada, Samia Mashelly, Mahmoud A. Fakhr, and Ahmed F. Seddik.”An Electronic Walking Stick for Blind”,
August 2015
9. Shashank Chaurasia and K.V.N. Kavitha.”An Electronic Walking Stick for Blind”, June 2014
10. Ananth Noorithaya1,Kishore Kumar M.3,Dr. Sreedevi A.2.”Voice Assisted Navigation System for the Blind”,
March 2014

Mais conteúdo relacionado

Mais procurados

IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...
IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...
IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...IRJET Journal
 
F B ASED T ALKING S IGNAGE FOR B LIND N AVIGATION
F B ASED  T ALKING  S IGNAGE FOR  B LIND  N AVIGATIONF B ASED  T ALKING  S IGNAGE FOR  B LIND  N AVIGATION
F B ASED T ALKING S IGNAGE FOR B LIND N AVIGATIONIJCI JOURNAL
 
IRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb PeopleIRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb PeopleIRJET Journal
 
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
 
IRJET - Smart Yoga Instructor
IRJET - Smart Yoga InstructorIRJET - Smart Yoga Instructor
IRJET - Smart Yoga InstructorIRJET Journal
 
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...IRJET Journal
 
IRJET- A Leading Hand for the Blind –A Review
IRJET- A Leading Hand for the Blind –A ReviewIRJET- A Leading Hand for the Blind –A Review
IRJET- A Leading Hand for the Blind –A ReviewIRJET Journal
 
IRJET- Smart Dustbin using GPS Tracking
IRJET- Smart Dustbin using GPS TrackingIRJET- Smart Dustbin using GPS Tracking
IRJET- Smart Dustbin using GPS TrackingIRJET Journal
 
IRJET- Animal Identification in Roads and Alert System for Passengers usi...
IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...
IRJET- Animal Identification in Roads and Alert System for Passengers usi...IRJET Journal
 
Women safety device with gps tracking and alerts
Women safety device with gps tracking  and alertsWomen safety device with gps tracking  and alerts
Women safety device with gps tracking and alertsPraween Lakra
 
Internet of Things Based Women Tracking and Security with Auto-Defender System
Internet of Things Based Women Tracking and Security with Auto-Defender SystemInternet of Things Based Women Tracking and Security with Auto-Defender System
Internet of Things Based Women Tracking and Security with Auto-Defender Systemrahulmonikasharma
 
IRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically ChallengedIRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically ChallengedIRJET Journal
 
IRJET- Smart City to Phiysical Things
IRJET- Smart City to Phiysical ThingsIRJET- Smart City to Phiysical Things
IRJET- Smart City to Phiysical ThingsIRJET Journal
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEIAEME Publication
 
IRJET - Home Automation for Physically Challenged and Elder People
IRJET -  	  Home Automation for Physically Challenged and Elder PeopleIRJET -  	  Home Automation for Physically Challenged and Elder People
IRJET - Home Automation for Physically Challenged and Elder PeopleIRJET Journal
 
IRJET- Women Security System using GSM and GPS
IRJET-  	  Women Security System using GSM and GPSIRJET-  	  Women Security System using GSM and GPS
IRJET- Women Security System using GSM and GPSIRJET Journal
 
Know Your Teacher(KYT)
Know Your Teacher(KYT)Know Your Teacher(KYT)
Know Your Teacher(KYT)Ashwani Kumar
 

Mais procurados (20)

IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...
IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...
IRJET - Third Eye for Blind People using Ultrasonic Vibrating Gloves with Ima...
 
F B ASED T ALKING S IGNAGE FOR B LIND N AVIGATION
F B ASED  T ALKING  S IGNAGE FOR  B LIND  N AVIGATIONF B ASED  T ALKING  S IGNAGE FOR  B LIND  N AVIGATION
F B ASED T ALKING S IGNAGE FOR B LIND N AVIGATION
 
IRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb PeopleIRJET - A Smart Assistant for Aiding Dumb People
IRJET - A Smart Assistant for Aiding Dumb People
 
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...
 
SMART APP FOR PHYSICALLY CHALLENGED PEOPLE USING INTERNET OF THINGS
SMART APP FOR PHYSICALLY CHALLENGED  PEOPLE USING INTERNET OF THINGSSMART APP FOR PHYSICALLY CHALLENGED  PEOPLE USING INTERNET OF THINGS
SMART APP FOR PHYSICALLY CHALLENGED PEOPLE USING INTERNET OF THINGS
 
IRJET - Smart Yoga Instructor
IRJET - Smart Yoga InstructorIRJET - Smart Yoga Instructor
IRJET - Smart Yoga Instructor
 
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...
 
IRJET- A Leading Hand for the Blind –A Review
IRJET- A Leading Hand for the Blind –A ReviewIRJET- A Leading Hand for the Blind –A Review
IRJET- A Leading Hand for the Blind –A Review
 
IRJET- Smart Dustbin using GPS Tracking
IRJET- Smart Dustbin using GPS TrackingIRJET- Smart Dustbin using GPS Tracking
IRJET- Smart Dustbin using GPS Tracking
 
Women’s Safety Jacket
Women’s Safety JacketWomen’s Safety Jacket
Women’s Safety Jacket
 
IRJET- Animal Identification in Roads and Alert System for Passengers usi...
IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...
IRJET- Animal Identification in Roads and Alert System for Passengers usi...
 
Women safety device with gps tracking and alerts
Women safety device with gps tracking  and alertsWomen safety device with gps tracking  and alerts
Women safety device with gps tracking and alerts
 
Internet of Things Based Women Tracking and Security with Auto-Defender System
Internet of Things Based Women Tracking and Security with Auto-Defender SystemInternet of Things Based Women Tracking and Security with Auto-Defender System
Internet of Things Based Women Tracking and Security with Auto-Defender System
 
IRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically ChallengedIRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically Challenged
 
IRJET- Smart City to Phiysical Things
IRJET- Smart City to Phiysical ThingsIRJET- Smart City to Phiysical Things
IRJET- Smart City to Phiysical Things
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
 
IRJET - Home Automation for Physically Challenged and Elder People
IRJET -  	  Home Automation for Physically Challenged and Elder PeopleIRJET -  	  Home Automation for Physically Challenged and Elder People
IRJET - Home Automation for Physically Challenged and Elder People
 
FLOOD ALERTING SYSTEM USING RASPBERRY PI & THINGSPEAK
FLOOD ALERTING SYSTEM USING RASPBERRY PI  & THINGSPEAKFLOOD ALERTING SYSTEM USING RASPBERRY PI  & THINGSPEAK
FLOOD ALERTING SYSTEM USING RASPBERRY PI & THINGSPEAK
 
IRJET- Women Security System using GSM and GPS
IRJET-  	  Women Security System using GSM and GPSIRJET-  	  Women Security System using GSM and GPS
IRJET- Women Security System using GSM and GPS
 
Know Your Teacher(KYT)
Know Your Teacher(KYT)Know Your Teacher(KYT)
Know Your Teacher(KYT)
 

Semelhante a IRJET - Aid for Blind People using IoT

SMART BLIND STICK USING VOICE MODULE
SMART BLIND STICK USING VOICE MODULESMART BLIND STICK USING VOICE MODULE
SMART BLIND STICK USING VOICE MODULEIRJET Journal
 
Blind Stick Using Ultrasonic Sensor with Voice announcement and GPS tracking
Blind Stick Using Ultrasonic Sensor with Voice announcement and GPS trackingBlind Stick Using Ultrasonic Sensor with Voice announcement and GPS tracking
Blind Stick Using Ultrasonic Sensor with Voice announcement and GPS trackingvivatechijri
 
IRJET- Smart Assistive Device for Visually Impaired
IRJET- Smart Assistive Device for Visually ImpairedIRJET- Smart Assistive Device for Visually Impaired
IRJET- Smart Assistive Device for Visually ImpairedIRJET Journal
 
Smart ID for Blind People’s
Smart ID for Blind People’sSmart ID for Blind People’s
Smart ID for Blind People’sIRJET Journal
 
A Survey on Smart Devices for Object And Fall Detection
A Survey on Smart Devices for Object And Fall DetectionA Survey on Smart Devices for Object And Fall Detection
A Survey on Smart Devices for Object And Fall DetectionIRJET Journal
 
Smart Walking Cane for Visually Impaired Pedestrian
Smart Walking Cane for Visually Impaired PedestrianSmart Walking Cane for Visually Impaired Pedestrian
Smart Walking Cane for Visually Impaired PedestrianIRJET Journal
 
A Survey on Smart Devices for Object and Fall Detection
A Survey on Smart Devices for Object and Fall DetectionA Survey on Smart Devices for Object and Fall Detection
A Survey on Smart Devices for Object and Fall DetectionIRJET Journal
 
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...IRJET Journal
 
DRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIRED
DRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIREDDRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIRED
DRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIREDIRJET Journal
 
IRJET-Voice Assisted Blind Stick using Ultrasonic Sensor
IRJET-Voice Assisted Blind Stick using Ultrasonic SensorIRJET-Voice Assisted Blind Stick using Ultrasonic Sensor
IRJET-Voice Assisted Blind Stick using Ultrasonic SensorIRJET Journal
 
Third Eye for Blind using Ultrasonic Sensor Vibrator Glove
Third Eye for Blind using Ultrasonic Sensor Vibrator GloveThird Eye for Blind using Ultrasonic Sensor Vibrator Glove
Third Eye for Blind using Ultrasonic Sensor Vibrator Gloveijtsrd
 
IRJET- Artificial Vision for Blind Person
IRJET- Artificial Vision for Blind PersonIRJET- Artificial Vision for Blind Person
IRJET- Artificial Vision for Blind PersonIRJET Journal
 
IRJET- Step Lock System in Bus using IoT
IRJET- Step Lock System in Bus using IoTIRJET- Step Lock System in Bus using IoT
IRJET- Step Lock System in Bus using IoTIRJET Journal
 
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...IRJET Journal
 
Obstacle Detection for Visually Impaired Using Computer Vision
Obstacle Detection for Visually Impaired Using Computer VisionObstacle Detection for Visually Impaired Using Computer Vision
Obstacle Detection for Visually Impaired Using Computer VisionIRJET Journal
 
Sensor Stick walking aid for the blinds
Sensor Stick walking aid for the blindsSensor Stick walking aid for the blinds
Sensor Stick walking aid for the blindsIJRES Journal
 
ARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLE
ARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLEARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLE
ARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLEIRJET 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 PeoplesAsia Smith
 
Hand Gesture for Multiple Applications
Hand Gesture for Multiple ApplicationsHand Gesture for Multiple Applications
Hand Gesture for Multiple ApplicationsIRJET Journal
 
IRJET - Smart Garbage Monitoring System using NodeMCU
IRJET - Smart Garbage Monitoring System using NodeMCUIRJET - Smart Garbage Monitoring System using NodeMCU
IRJET - Smart Garbage Monitoring System using NodeMCUIRJET Journal
 

Semelhante a IRJET - Aid for Blind People using IoT (20)

SMART BLIND STICK USING VOICE MODULE
SMART BLIND STICK USING VOICE MODULESMART BLIND STICK USING VOICE MODULE
SMART BLIND STICK USING VOICE MODULE
 
Blind Stick Using Ultrasonic Sensor with Voice announcement and GPS tracking
Blind Stick Using Ultrasonic Sensor with Voice announcement and GPS trackingBlind Stick Using Ultrasonic Sensor with Voice announcement and GPS tracking
Blind Stick Using Ultrasonic Sensor with Voice announcement and GPS tracking
 
IRJET- Smart Assistive Device for Visually Impaired
IRJET- Smart Assistive Device for Visually ImpairedIRJET- Smart Assistive Device for Visually Impaired
IRJET- Smart Assistive Device for Visually Impaired
 
Smart ID for Blind People’s
Smart ID for Blind People’sSmart ID for Blind People’s
Smart ID for Blind People’s
 
A Survey on Smart Devices for Object And Fall Detection
A Survey on Smart Devices for Object And Fall DetectionA Survey on Smart Devices for Object And Fall Detection
A Survey on Smart Devices for Object And Fall Detection
 
Smart Walking Cane for Visually Impaired Pedestrian
Smart Walking Cane for Visually Impaired PedestrianSmart Walking Cane for Visually Impaired Pedestrian
Smart Walking Cane for Visually Impaired Pedestrian
 
A Survey on Smart Devices for Object and Fall Detection
A Survey on Smart Devices for Object and Fall DetectionA Survey on Smart Devices for Object and Fall Detection
A Survey on Smart Devices for Object and Fall Detection
 
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
 
DRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIRED
DRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIREDDRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIRED
DRISHTI – A PORTABLE PROTOTYPE FOR VISUALLY IMPAIRED
 
IRJET-Voice Assisted Blind Stick using Ultrasonic Sensor
IRJET-Voice Assisted Blind Stick using Ultrasonic SensorIRJET-Voice Assisted Blind Stick using Ultrasonic Sensor
IRJET-Voice Assisted Blind Stick using Ultrasonic Sensor
 
Third Eye for Blind using Ultrasonic Sensor Vibrator Glove
Third Eye for Blind using Ultrasonic Sensor Vibrator GloveThird Eye for Blind using Ultrasonic Sensor Vibrator Glove
Third Eye for Blind using Ultrasonic Sensor Vibrator Glove
 
IRJET- Artificial Vision for Blind Person
IRJET- Artificial Vision for Blind PersonIRJET- Artificial Vision for Blind Person
IRJET- Artificial Vision for Blind Person
 
IRJET- Step Lock System in Bus using IoT
IRJET- Step Lock System in Bus using IoTIRJET- Step Lock System in Bus using IoT
IRJET- Step Lock System in Bus using IoT
 
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
 
Obstacle Detection for Visually Impaired Using Computer Vision
Obstacle Detection for Visually Impaired Using Computer VisionObstacle Detection for Visually Impaired Using Computer Vision
Obstacle Detection for Visually Impaired Using Computer Vision
 
Sensor Stick walking aid for the blinds
Sensor Stick walking aid for the blindsSensor Stick walking aid for the blinds
Sensor Stick walking aid for the blinds
 
ARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLE
ARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLEARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLE
ARTIFICIAL INTELLIGENCE BASED SMART NAVIGATION SYSTEM FOR BLIND PEOPLE
 
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
 
Hand Gesture for Multiple Applications
Hand Gesture for Multiple ApplicationsHand Gesture for Multiple Applications
Hand Gesture for Multiple Applications
 
IRJET - Smart Garbage Monitoring System using NodeMCU
IRJET - Smart Garbage Monitoring System using NodeMCUIRJET - Smart Garbage Monitoring System using NodeMCU
IRJET - Smart Garbage Monitoring System using NodeMCU
 

Mais de 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
 

Mais de 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...
 

Último

Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 

Último (20)

Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 

IRJET - Aid for Blind People using IoT

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 314 Aid for Blind People using IoT Atharv Phadnis1, Nikhil Nimbalkar2, Shubham Pagar3, K.S Charumathi4 1,2,3BE Student, Department of Information Technology Engineering , MES Pillai College of Engineering, Navi Mumbai, India. 4Assistant Professor4, Department of Information Technology Engineering, MES Pillai College of Engineering, Navi Mumbai, India. ----------------------------------------------------------------------***---------------------------------------------------------------- Abstract— Our Society has many specially abled people, to work for their betterment and specifically for the visually impaired people, we have decided to lend them assistance through our project which is a combination of IoT and App Development. Blindness is a condition in which an individual loses the ocular perception. Self-reliability and Mobility for the visually impaired and blind people has always been a problem. Blind people face many difficulties while interacting with their nearby environment. This paper focuses on developing a Smart Walking Stick using the arduino to help the visually impaired people to walk more confidently by providing information about their environment. Ultrasonic sensors are used to detect obstacles, pits that lie ahead and to alert them of the same, thereby reducing the amount of accidents while walking. The stick is programmed to connect automatically to the Android phone using USB Serial Connection , for giving auditory feedback to the user and also for determining the best route to be taken to reach a new location by integrating GPS technology. Keywords: Blind People, Arduino, Ultrasonic Sensors, GPS module, GSM module, Android app, Navigation ,Gestures 1. INTRODUCTION 1.1 Fundamentals: Visually impaired people face difficulty while interacting and feel their environment. They have little contact with their surroundings. Physical movement is a challenge for visually impaired people, because it can become difficult to distinguish obstacles appearing in front of them, and they are not able to move from one place to another. They depend on their families for mobility and financial support. Their mobility restricts them from interacting with people and social activities. Smart walking stick is specially designed to detect obstacles which may help the blind to navigate care easily. The audio messages will keep the user alerting constantly thereby reducing accidents. This system presents a concept to provide a smart electronic aid for blind people, both in public and private space. The proposed system contains the ultrasonic sensor to detect obstacles ahead using ultrasonic waves. On sensing obstacles the sensor passes this data to the arduino. All the feedback will be given to the blind man. 1.2 Objectives: The main aim of the system is to provide an efficient navigation aid for the blind persons which gives them a sense of vision by providing the information about their surroundings and objects around them. Also this system provides SOS as well as calling system. Since the smart walking stick is a simple and purely mechanical device to detect the obstacles on the ground. This device is light in weight and portable. It provides the best travel aid for the person. The blind person can move from one place to another independently without the others help. 1.3 Scope Blind people face many difficulties interacting with their nearby environment. Our main aim is to provide an environment which will help blind people to navigate, sense the obstacles, provide emergency alert for their betterment. We have decided to lend them a helping hand through our project which is a combination of IoT and App Development. 2. PROPOSED SYSTEM 2.1 Implementation In the proposed system, the ultrasonic sensor is used to sense the obstacle distance from the user. This reference distance can be used to decide whether the user can move or not. The ultrasonic sensors work on the basis of sound.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 315 The sound waves are transmitted ahead from the sensors towards the obstacle which can sense the distance up to a distance The sensors are placed in different locations in order to cover maximum sides possible with minimum usage of the sensors. Generally, the blind person cannot see the objects present on the ground. So the sensor keeps track of the ground clearance providing necessary security measures. For the ultrasonic proximity sensors, a sonic transducer is employed to permits the interchange transmission and gathering of sound waves. The transducer emits the sonic waves which are mirrored by an object and returned within the transducer. The ultrasonic sensor will change to receiver mode when discharging the sound waves. The time elapsed between the emission and reception of the waves is proportional to the gap of the object from the detector. As soon as the obstacle is detected, the microcontroller checks if the barrier is close enough (100 cm from the user) to prevent the passage of the blind subject. The architecture used is layered style. Two layered are used, Android and the Arduino. There are various functions in Android. Based on functions selection, appropriate procedure calls are made. If Navigation is selected, then first the procedure call of voice input is called, to enter the destination, then the procedure for Google Api is called to start the navigation. If Gesture Activity is called, the procedure call for gesture recognition is done. Based on the gesture drawn, the appropriate number is called. Considering the second layer, as soon as the app is launched in android, the Arduino starts reading the data through all four sensors. For each reading in ultrasonic sensors, proper procedure call is made. The procedure call for pothole distance sensing and obstacle distance sensing are different. These sensors sense the distance and send the data whether a pothole is detected or an obstacle is detected. If an obstacle, then the obstacle detection algorithm checks left and right sensors. Calculating the values from all sensors it decides the appropriate direction and suggests it to the user. The data transfer between two layers takes place via universal serial bus. The data is then received in the above layer and thus appropriate decision is displayed as well as voice output is provided. Thus, the Graphic user interface, Gesture detection, Navigation and display of direction becomes the part of first layer and Arduino and ultrasonic sensors become part of second layer. The GSM and GPS module connected to arduino helps to send the location of blind person when the SOS button on the stick is pressed. (A) OBSTACLE DETECTION Step 1: front_dist = distance received from sensor 2 or front sensor. Step 2: if (front_dist >=100 && front_dist <=200) alert that obstacle is ahead.Go to step 5 Step 3: calculate dist_right and dist_left i.e. distance from right and left sensor respectively. Step 4: if right_dist<100 && left_dist>100 alert Turn left else if left_dist<100 && right_dist>100 alert Turn right else if left_dist<100 && right_dist<100 alert Path is blocked else alert Turn anywhere go to step 1 Step 5: check dist_front again for closeness Step 6: if (front_dist <100) alert obstacle is very close in front go to step 3
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 316 Fig1: Obstacle Detection Flowchart (B) POTHOLE DETECTION avg_value= (sum of 10 values)/10. max_value= maximum of initial 10 values. fluct_value= max_value-avg_value. Threshold= 2*fluct_value+avg The arduino calculates distance from ground with each loop, using the readings from the ultrasonic sensor, and compares the new value with threshold value calculated previously to check for potholes. A value greater than the threshold value indicates the possibility of presence of a pothole ahead of the user and the arduino sends a value to the android application to warn the user. Fig2: Pothole Detection Flowchart
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 317 Fig. 3: System architecture for Smart Blind Stick Fig. 4: Blind Stick Implementation
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 318 Fig 5: Obstacle Detection Fig. 5. Pothole Detection Fig. 7:Double Tap Navigation
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 319 Fig 8. Gesture Recognition for Calling 2.2 Test Cases: Table 1: Google Navigation on double click Destination Voice to Text Destination Navigation Started? Panvel Station “Panvel Station” Yes CST Station “CST Station” Yes Table 2: Gesture recognition for calling Gesture drawn Gesture Detected Function called “U” “U” call emergency contact 1 “V” “V” call emergency contact 2 “^” “^” call emergency contact 3 Table 3. Pothole Detection Pothole Output Distance from ground Result pothole present “pothole detected” 30 accurate pothole not present “pothole detected” 27 error pothole not present no output 18 accurate
  • 7. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 03 | Mar 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 320 Table 4: Obstacle Detection Obstacle from Output Range (cm) Result front “obstacle ahead” 142 accurate front “obstacle ahead turn anywhere” 76 accurate front and left “turn right” 70 accurate front and right “turn left” 81 accurate front and left and right “turn right” 60 Error front and left and right “path blocked turning suggested” 71 accurate 3. CONCLUSION The smart walking stick, constructed with at most accuracy, will help the blind people to move from one place to another without others help. This could also be considered a crude way of giving the blind a sense of vision. This stick reduces the dependency of visually impaired people on other family members, friends and guide dogs while walking around. The proposed combination of various working units makes a real-time system that monitors the position of the user and provides dual feedback making navigation more safe and secure. The smart stick detects objects or obstacles in front of users and feeds warning back, in the form of voice messages rather than vibration. The advantage of the system lies in the fact that it can prove to be a low cost solution to millions of blind people worldwide.Another advantage of the system is that it helps the blind people in both indoor and outdoor, care-free navigation. The devices placed in the stick makes it comfortable and easy to handle. The smart stick helps in detecting obstacles placed at a distance in front of the user. The system is suitable for both indoor and outdoor environments. The information regarding obstacles is given through voice alerts, eliminates the difficulty of understanding vibration patterns which was used in earlier systems. The system is a moderate budget mobile navigational aid for the visually impaired. REFERENCES 1. Saurav Mohapatra,Subham Rout,Varun Tripathi,Tanish Saxena ,Yepuganti Karuna”Smart Walking Stick for Blind integrated with SOS Navigation System.” May, 2018. 2. Apur vShaha, Shubham Rewari, and Sankaradithyan Gunasekharan.“Smart Walking Stick for the Visually Impaired People using Low Latency Communication”, January 2018 3. Mingyong Zhou, Wenyan Li, Bo Zhou.“ An IOT system design for blind”, June 2017. 4. Yufang Huang,, Yi Lin, Rongzhen Miao “ An Auxiliary Blind Guide System based on Multi-sensor Data Fusion”, April 2017 5. Zeeshan Saquib,Suhas N Bhargav,Vishakha Murari “BlinDar: An Invisible Eye for the Blind People” ,March 2017. 6. Rashidah Funke Olanrewaju, Muhammad Luqman Azzaki Mohd Radzi, Mariam Rehab “ iWalk: Intelligent Walking Stick for Visually Impaired Subjects” , February 2017. 7. Mounir Bousbia-Salah, Mohamed Fezari “A Navigation Tool for Blind People” , January 2017 8. Ayat Nada, Samia Mashelly, Mahmoud A. Fakhr, and Ahmed F. Seddik.”An Electronic Walking Stick for Blind”, August 2015 9. Shashank Chaurasia and K.V.N. Kavitha.”An Electronic Walking Stick for Blind”, June 2014 10. Ananth Noorithaya1,Kishore Kumar M.3,Dr. Sreedevi A.2.”Voice Assisted Navigation System for the Blind”, March 2014