Blind Helmet

by Gurdeep Sinjgh in Living > Kids

1340 Views, 0 Favorites, 0 Comments

Blind Helmet

IMG_20190405_202428.jpg

Blind people use a white helmet as a tool for direction, when they move or walk.Here, we develop a tool which can serve as a blind helmet being more efficient and helpful than the conventional one.

This project is made in khera jattan Nook

Name of makers

Rajveer

Gurdeep

Daman

Material

IMG_20190404_220948.jpg

1. Arduino uno

2. Ultrasonic sensor

3. Buzzer

4. Battery

5. Switch

6. Battery caliper

7. Specs

8. Jumper wire

9. Dabble tape

10. Cardboard helmet

Arduino Connect to Ultrasonic Sensor

IMG_20190404_222258.jpg

First, take Four jumper wires and put them in ultrasonic sensors.

VCC - 5v

Trig - 13

Echo - 12

Gnd - Ground

Arduino Connect to Buzzer

IMG_20190404_222418.jpg

Buzzer positive wire to connect Arduino pin 7

Buzzer negative wire to Arduino Ground

Arduino Connect to Battery

IMG_20190404_222523.jpg

Battery positive wire to connect Arduino pin V1n

Battery negative wire to Arduino Ground.

Fix It

IMG_20190404_173252.jpg
IMG_20190404_173319.jpg
IMG_20190404_173241.jpg
IMG_20190404_170829.jpg
IMG_20190404_173406.jpg

Arduino Uno, Battery, ultrasonic sensor and switch added to the helmet.

Arduino Cord

IMG_20190405_172213.jpg

Now its time for uploading the sketch.The sketch for the Arduino is given below, copy this into your Arduino IDE, then upload into your Arduino

#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 < 70)// This is where checking the distanceyou can change the value{ digitalWrite(motor,HIGH); // When the the distance below 100cmdigitalWrite(buzzer,HIGH);} else{digitalWrite(motor,LOW);// when greater than 100cmdigitalWrite(buzzer,LOW); } delay(500);}

It's Ready to Use

Screenshot_2019-04-04-23-56-16-061_com.miui.videoplayer.png

Video Link

Screenshot_2019-04-05-23-58-09-593_com.android.chrome.png