Chandru S
Published

Smart Blind Assistant

This Smart Blind Assistant helps blind people to sense their environment. This assist device can also be connected through Bluetooth.๐Ÿ‘๏ธ

IntermediateWork in progress3 hours12,530
Smart Blind Assistant

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Proximity Sensor
Proximity Sensor
×1
Jumper wires (generic)
Jumper wires (generic)
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
Breadboard (generic)
Breadboard (generic)
×1
9V battery (generic)
9V battery (generic)
×1
Buzzer
Buzzer
×1

Software apps and online services

Android Bluetooth Terminal
Arduino IDE
Arduino IDE

Story

Read more

Code

Smart Blind Assistant

Arduino
This is the Arduino Code for this Project!
// Made by, Chandru
const int signalPin= 0;// Connect the IR Signal pin to Analog 0 Pin (A0)
const int buzzPin= 13; //Connect Buzzer to Digital Pin 13
int signal;

void setup() {
Serial.begin(9600); 
pinMode(signalPin, INPUT); 
pinMode(buzzPin, OUTPUT); 
}

void loop() {
signal= analogRead(signalPin); 
Serial.println(signal); 
delay(100); 

if(signal > 100){ #  //Intensity can be changed from 100 to 750, But Sensor will not get its Efficiency
digitalWrite(buzzPin, HIGH);
}
else{
digitalWrite(buzzPin, LOW);
}
}
//Thanks for Uploading to your Arduino Board.....๐Ÿ‘๏ธHelp Blinds๐Ÿ‘๏ธ

Credits

Chandru S

Chandru S

1 project โ€ข 2 followers
#raspberrypi #arduino #diy

Comments