Final Write Up
Final Write Up
VISION
Soumya Raj
Class-10{E}
Roll No.-24
Materials we are using
impaired. Obstacles in the environment, such as furniture, stairs, and even everyday
mobility aids, like canes and guide dogs, offer valuable support but have limitations
in certain situations. This project aims to address this gap by providing a solution that
according to the need). Upon detecting an obstacle, the glasses emit a clear audible
alert, using a buzzer enabling the user to adjust their path and avoid potential
collisions.
Technical Specifications:
Range, Buzzer, and
Functionality
The glasses are designed to provide a reliable and efficient obstacle detection system.
The 100 cm range is carefully chosen to cover the critical area directly in front of the
user, allowing for early detection and timely reaction. A built-in buzzer provides a
clear and distinct audible alert when an obstacle is detected within the range on 100
cm.
RANGE
1 100 CM(CAN BE CHANGED)
ALERT SYSTEM
2 NOISE FROM THE BUZZER
FUNCTIONALITY
3 OBSTACLE DETECTION, AUDIBLE ALERT
Different levels of Obstacle
Detection
LOW LEVEL
1 If there is any obstacle between the range of 100 cm to 50 cm, the Ultrasonic Sensor will
identify it and then the Buzzer will start making noise with a delay of 1 second.
MEDIUM LEVEL
If there is any obstacle between the range of 50 cm to 20 cm, the Ultrasonic
2 Sensor will identify it and then the Buzzer will start making noise with a delay of
0.5 second.
EXTREME LEVEL
If there is any obstacle between the range of 20 cm to 10 cm, the
3 Ultrasonic Sensor will identify it and then the Buzzer will start making
noise with a delay of 0.1 second.
WARNING MODE!!!
If there is any obstacle between the range of 10 cm to 20
4 cm, the Ultrasonic Sensor will identify it and then the
Buzzer will start making noise without any delay.
SAFE MODE
If there is no object in the range of 100 cm, then
5 the buzzer will not make any kind of noise.
Arduino NANO Coding:
Implementation of Obstacle
Detection
The obstacle detection system within the glasses is powered by program written for
measure the distance to objects in front of the user. The Arduino NANO processes the
data provided by the Ultrasonic Sensor in real time, triggering the buzzer when an
object is detected within the specified range. This efficient and reliable system
#define echo 6
#define buzz 12
void setup() {
pinMode(2, OUTPUT);
pinMode(6, INPUT);
pinMode(12, OUTPUT);
void loop() {
digitalWrite(trig, LOW);
delay(2);
digitalWrite(trig, HIGH);
delay(11);
digitalWrite(trig, LOW);
digitalWrite(buzz, HIGH);
delay(1000);
digitalWrite(buzz, LOW);
delay(1000);
digitalWrite(buzz, HIGH);
delay(500);
digitalWrite(buzz, LOW);
delay(500);
// Extreme Level
//IF AN OBSTACLE IS BETWEEN THE RANGE OF 20 CM AND 10 CM, THE BUZZER WILL START MAKING NOISE WITH A DELAY OF 0.1
SECOND AFTER EVERY BUZZ.
{
digitalWrite(buzz, HIGH);
delay(100);
digitalWrite(buzz, LOW);
delay(100);
//IF AN OBSTACLE IS PRESENT UNDER 10 CM, THEN THE BUZZER WILL KEEP MAKING NOISE WITHOUT ANY DELAY.
digitalWrite(buzz, HIGH);
else
//WHEN THE BUZZER US NOT MAKING ANY NOISE, THEN THERE IS NO OBSTACLE IN THE RANGE OF 100 CM.
digitalWrite(buzz, LOW);
}
delay(500);
//Thank You
are visually impaired with increased independence and freedom. The timely and
accurate obstacle detection system allows users to navigate their surroundings with
greater confidence and ease, reducing the risk of collisions and promoting safe and
independent mobility. This newfound ability can significantly enhance their daily
lives, enabling them to engage in activities with greater autonomy and participation.
Potential Applications: Beyond Obstacle
Detection
The technology used in the glasses has the potential for applications that extend
assistive technology solution that can address a wider range of needs for the visually
impaired.
I, Soumya Raj will work on these additional features in the future, so that the visually
impaired persons can significantly enhance their way of living more comprehensively.
THANK YOU