SMART Blind
SMART Blind
Abstract
A smart stick concept is devised to provide a smart electronic aid for blind people .
Blind and visually impaired find difficulties in detecting obstacles during walking in
the street. The system is intended to provide artificial vision and object detection,
real time assistance via making use of Arduino UNO.
The main objective of our project is to provide a sound based assistance to blind
people.
The existing devices for the visually impaired only focus on travelling from one
location to another.
The device is aimed to help visually impaired with the same maneuver as that of
sighted people.
A brief study had been carried out to understand various issues related to the project
which involves providing a smart electronic aid for blind people to provide artificial
vision and object detection, real assistance via GPS module by using Arduino Uno.
Our project mainly focuses on the visually impaired people who cannot walk
independently environment.
The system consists of ultrasonic sensors, and the feedback is receive through audio.
The aim of the overall system is to provide a low cost and efficient navigation and
obstacle detection aid for blind which gives which gives a sense of artificial by
providing information about the environmental scenario of static and dynamic object
round them, so that they can walk independently.
iv
v
CONTENTS
Title Page i
Certificate ii
Declaration iii
Abstract iv
Acknowledgements v
Contents vi-vii
List of Figures viii
List of Tables ix
List of Abbreviations and Symbols x
vi
LIST OF FIGURES
Figure 4: LED 14
Figure 5: 9V Battery 15
Figure 6: Code Snippets 18
viii
LIST OF ABBREVIATIONS
ix
x
Introduction Chapter
1
CHAPTER 1
INTRODUCTION
1
Introduction Chapter
1
Objectives
1
Introduction Chapter
1
CHAPTER 2
LITERATURE REVIEW
Literature Survey
References
CHAPTER 3
PROPOSED MODEL
Theoretical Background
Arduino Unit - This module deals with the taking input from the
obstacles coming across the way and giving output according to that
input using sound notifications.
1
Introduction Chapter
1
Components Required-
Ultrasonic Sensor
(The HC-SR04 Ultrasonic Distance Sensor is a sensor used for
detecting the distance to an object using sonar).
Arduino UNO
(The Arduino UNO is an open-source
microcontroller board based on the Microchip
ATmega328P microcontroller and developed
by Arduino cc.The board is equipped with sets
of digital and analog input/output pins).
1
Introduction Chapter
1
Arduino Buzzer-
(A piezo buzzer is basically a tiny
speaker that you can connect directly
to an Arduino; from the arduino you
can make sounds with a buzzer by
using tone).
9V Battery -
The battery is used to provide
power supply to the system for its
operation.
1
Introduction Chapter
1
LED
(A light-emitting diode is a semiconductor light
source that emits light when current flows
through it ).
1
Introduction Chapter
1
CHAPTER 4
DESIGN PROCESS
1
Introduction Chapter
1
Arduino Audio
UNO
1
Introduction Chapter
1
// defines variables
long duration;
int distance;
int safetyDistance;
void setup() {
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
pinMode(buzzer, OUTPUT);
pinMode(ledPin, OUTPUT);
Serial.begin(9600); // Starts the serial communication
}
void loop() {
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(10);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
safetyDistance = distance;
if (safetyDistance <= 17){
digitalWrite(buzzer, HIGH);
digitalWrite(ledPin, HIGH);
}
else{
digitalWrite(buzzer, LOW);
digitalWrite(ledPin, LOW);
}
1
Introduction Chapter
1
Methodology
The working of the system begins when the power supply is given. The
Smart Blind Stick will have an Ultarsonic Sensor, LDR, Arduino UNO,
Buzzer.
ADC and DAC takes place in the Arduino. Additional navigation efficiency
is provided through Buzzer.
Then, after receiving the input from the ultrasonic sensors , it will notify the
user by giving the notification in the form of sound.
This sound will be buzzer sound, ensuring the user is notified and saved from
the obstacles he/she comes across.
This is the video attached to make the methodology of the project more
comprehensible.
1
Introduction Chapter
1
Start
No Yes
Is object Compute Distance
detected?
Buzzer Sound
produced
Stop
1
Introduction Chapter
1
CHAPTER 4
Results
The project was made with the working hardware model, detecting the obstacles if come
across any obstacles.
The blind stick proposed model can aid the virtually impaired user by helping him/her
navigate through different terrains and obstacles.
With the advantages, that it is low cost , fast response, low power consumption, light
weight and ability receive the feedback through buzzer audio.
Detecting the obstacle with the help of Ultrasonic sensors and it can provide notification
to user holding it in the sound form via arduino buzzer.
1
Introduction Chapter
1
CHAPTER 4
APPLICATIONS
Applications
It works as a navigation device for the blind people by alerting them about dangers.
The system is applied in automotive parking sensors and obstacles warning system.
It is applied during the measurement of object distance.
Robotics
barriers. Auto
detection.
With little software and sensor up gradation, can extensible to any other application and
specification.
1
Introduction Chapter
1
CHAPTER 5
Conclusions
The project proposed the design and architecture of a new concept of Smart Electronic
Guiding Stick for blind people.
The blind stick proposed in this paper can aid the visually impaired user by helping
him/her navigate through different terrains and obstacles.
The advantage of the system lies in the fact that it can prove to be very low cost solution
to millions of blind person worldwide.
The proposed combination of various working units makes a real-time system that
monitors position of the user and provide dual feedback making navigation more safe
and secure.
It can be further improved to have more decision taking capabilities by employing varied
types of sensors and thus could be used for different applications.
It aims to solve the problems faced by the blind people in their daily life.
The system also takes measures to ensure their safety.
1
Introduction Chapter
1
Future Scope
In future, we will be modifying the proposed model in better way . Initiating with the
addition of Bluetooth module for proper on and off functioning.
Integration of GPS module for detecting location of user , in case of an emergency.
GPS module will be integrated in combination of Bluetooth Module of Arduino UNO
connecting it to the mobile phone for better and smooth location detection.
Besides, soil moisture detector can be implemented for detecting the amount of moisture
in the soil , providing the safer access of the path to the user.
At last , in order to improve the sound notification we are planning to implement sound
module which will give instruction in voice form.
The stick system presented in the paper uses artificial intelligence along with various
sensors in real time to help the visually disabled people to navigate their environment
independently. Image recognition, collision detection and obstacle detection are the three
tasks performed by the system.
1
Introduction Chapter
1