This project deals with a very common problem faced by blind people they collapse with obstacles or anything in front of them so to avoid this problem this Blind Stick is very useful.

In this Blind Stick an ultrasonic sensor is used to sense the object or obstacle turns on the LED and produces a sound so that the person can stop and avoid collapsing with the obstacle.

Hardware required 

  1. Arduino Uno R3
  2. LED
  3. Resistor
  4. Jumper Wires
  5. Ultrasonic Sensor
  6. Buzzer
  7. 9v Battery

Schematic Diagram

AD 4nXdkXB7wY6GxFKDLz8KWKx2ev 2h ZHOO1RyvbZOST3V0 iFb4HWrUlVleYhsYifCKCy2WAMcLnIBHnEr73qyhOB6l1KN1v UFOYNqGnd7pbZkPEQo p5nZqOVUerKxueMoCZnOKQxTKy2Yest D2Fn66Ai2vyZVqJeyw7OqqGzAlYh3i oNjM?key=l2dRhgcTVbVrobl1bbWikA

Arduino Code

#define trigPin 13#define echoPin 12#define motor 7#define buzzer 6void setup(){pinMode(trigPin, OUTPUT);pinMode(echoPin, INPUT);pinMode(motor, OUTPUT);pinMode(buzzer,OUTPUT);}void loop(){long duration, distance;digitalWrite(trigPin, LOW); delayMicroseconds(2);digitalWrite(trigPin, HIGH);delayMicroseconds(10); digitalWrite(trigPin, LOW);duration = pulseIn(echoPin, HIGH);distance = (duration/2) / 29.1;if (distance < 80{ digitalWrite(motor,HIGH);digitalWrite(buzzer,HIGH);} else{digitalWrite(motor,LOW);digitalWrite(buzzer,LOW); } delay(500);}

Precautions

  1. Connections should be done properly.
  2. Arduino is case Sensitive so code accordingly.
  3. Give different and appropriate colors to the wires.
  4. Use resistors for sensors and LED’s.

Leave a Reply

Recent Posts

Gallery

Related Posts