Blind Stick Project with Arduino

Blind Stick Project with Arduino

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

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.

Do you have questions regarding our STEM program?

Contact us anytime.

Take your first step into the magical world of coding for kids

Share:

More Posts

Send Us A Message

Coding For kids

Coding Courses for Kids Online

Our courses which are tailored for grades 1 to 12, and our hands-on curriculum seamlessly integrates, preparing students for challenges and inspiring the next generation.

STEM Labs

STEM LAB for Schools

If you are a school searching for a cutting-edge makerspace solution that goes beyond conventional education, look no further. Partner with Makers’ Muse to unlock a world of innovation and transformative learning experiences for your students. 

Coding Toys

STEM LAB for Schools

Discover a revolutionary coding journey for students with our cutting-edge educational toys. Partner with us to unlock innovative learning experiences that transcend traditional education.

Leave a Reply