SlideShare a Scribd company logo
1 of 15
DESIGN TOOL WORKSHOP -
2
BATCH-10
ECE
DATE:15/03/2022
GROUP MEMBERS
2100040351 – V.DONA RASHMITHA
2100040338 - M .A. ROUF
2100040355 - V. HEMANTH
2100040352 – M. AKSHAY KUMAR
PROJECT
TITLE :
SMART
WALKING
STICK FOR
THE BLIND
RELATED
IMAGES TO
THE
PROJECT
INTRODUCTION
In this project we made a Smart Stick for the blind
In this Smart stick there is a sensor that senses the obstacles or walls from 1
or half meter range and then this stick vibrates & makes a buzzing sound.
This Smart Stick warns the blind person that there is an obstacle or wall in
front of him/her.
Then that person will be warned from obstacles or walls.
COMPONENTS REQUIRED:
ARDUINO UNO
USB CABLE FOR UPLOADING CODE
JUMPER WIRES
BREADBOARD
HC-SR04 ULTRASONIC SENSOR
BUZZER
LED WITH A 220-OHM RESISTOR
DC BATTERIES
HOW ULTRASONIC
SENSOR WORKS
• Ultrasonic sensors work by sending out a sound
wave at a frequency above the range of human
hearing. The transducer of the sensor acts as
a microphone to receive and send the ultrasonic
sound. Ultrasonic sensor like many others, use a
single transducer to send a pulse and to receive the
echo. The sensor determines the distance to a
target by measuring time lapses between the
sending and receiving of the ultrasonic pulse.
IMPLEMENTATION IN
SOFTWARE:
STEPS TO
MAKE THE
PROJECT
• Take Arduino UNO, Buzzer, Ultrasonic sensor,
Vibrating motor, battery, switch, and a wooden
stick or plastic pipe.
• Take a stick and place the ultrasonic sensor on
it. Connect the Jumper wires on it.
• Then place Buzzer and Vibrating motor on the
stick.
• Connect the jumper wires to the buzzer and
Vibrating motor.
• Do connections from the circuit diagram.
• Place the Arduino Nano, Battery and switch on
the stick.
• Upload the code.
• After Uploading now check for the Blind stick.
HOW THE
SMART
STICK
WORKS
CODE USED TO MAKE THE PROJECT
const int trigPin =13;
const int echoPin =5;
long duration;
int distanceCm, distanceInch;
void setup()
{
Serial.begin(9600);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
pinMode(9, OUTPUT); // Connect LED Pin D9
pinMode(3, OUTPUT); // Connect Buzzer Pin D3
}
void loop()
{
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distanceCm= duration*0.034/2;
distanceInch = duration*0.0133/2;
Serial.println("Distance: ");
Serial.println(distanceCm);
delay (100);
// See the Ultrasonic Sensor Value in Serial Monitor
if(distanceCm < 25) // You can Change the value
{
digitalWrite(3, HIGH); // Buzzer ON
digitalWrite(9, HIGH); // LED ON
}
else
{
digitalWrite(led2,HIGH);
digitalWrite(led,LOW);
digitalWrite(spk,LOW);
}
delay(500);
}
HARDWARE
IMPLEMENTATION
THANK YOU

More Related Content

Similar to DTW EVEN SEM PROJECT.pptx

Arduino Blind Aid
Arduino Blind AidArduino Blind Aid
Arduino Blind AidRohithND
 
IRJET- Smart Guide Stick For Blind
IRJET- Smart Guide Stick For BlindIRJET- Smart Guide Stick For Blind
IRJET- Smart Guide Stick For BlindIRJET Journal
 
Smart walking Stick for blinds
Smart walking Stick for blindsSmart walking Stick for blinds
Smart walking Stick for blindsAmbikaR4
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGERizalNurjaman2
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGERifqi Darmawan
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEtellanadina
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSOR
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSORAUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSOR
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSORtellanadina
 
automatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridgeautomatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridgeRifqi Darmawan
 
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For BridgeAutomatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For BridgeRizalNurjaman2
 
A Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind PeoplesA Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind PeoplesAsia Smith
 
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptxVAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptxRuchi843636
 
universal remote controller for electric bulb and ceiling fan
universal remote controller for electric bulb and ceiling fanuniversal remote controller for electric bulb and ceiling fan
universal remote controller for electric bulb and ceiling fanOGAGA OTOBOR
 
IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET Journal
 
IRJET- Virtual Eye for the Visually Challenged
IRJET-  	  Virtual Eye for the Visually ChallengedIRJET-  	  Virtual Eye for the Visually Challenged
IRJET- Virtual Eye for the Visually ChallengedIRJET Journal
 
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET Journal
 

Similar to DTW EVEN SEM PROJECT.pptx (20)

Arduino Blind Aid
Arduino Blind AidArduino Blind Aid
Arduino Blind Aid
 
IRJET- Smart Guide Stick For Blind
IRJET- Smart Guide Stick For BlindIRJET- Smart Guide Stick For Blind
IRJET- Smart Guide Stick For Blind
 
Smart walking Stick for blinds
Smart walking Stick for blindsSmart walking Stick for blinds
Smart walking Stick for blinds
 
UEE PPT.pptx
UEE PPT.pptxUEE PPT.pptx
UEE PPT.pptx
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSOR
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSORAUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSOR
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND ULTRASONIC SENSOR
 
automatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridgeautomatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridge
 
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For BridgeAutomatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
 
Final year Engineering project
Final year Engineering project Final year Engineering project
Final year Engineering project
 
A Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind PeoplesA Smart Stick For Assisting Blind Peoples
A Smart Stick For Assisting Blind Peoples
 
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptxVAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
 
universal remote controller for electric bulb and ceiling fan
universal remote controller for electric bulb and ceiling fanuniversal remote controller for electric bulb and ceiling fan
universal remote controller for electric bulb and ceiling fan
 
Rangefinder ppt
Rangefinder pptRangefinder ppt
Rangefinder ppt
 
IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using Arduino
 
Radar Detector
Radar Detector Radar Detector
Radar Detector
 
IRJET- Virtual Eye for the Visually Challenged
IRJET-  	  Virtual Eye for the Visually ChallengedIRJET-  	  Virtual Eye for the Visually Challenged
IRJET- Virtual Eye for the Visually Challenged
 
Reverse car-parking
Reverse car-parkingReverse car-parking
Reverse car-parking
 
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
 

Recently uploaded

Intro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptxIntro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptxFIDO Alliance
 
How to Check GPS Location with a Live Tracker in Pakistan
How to Check GPS Location with a Live Tracker in PakistanHow to Check GPS Location with a Live Tracker in Pakistan
How to Check GPS Location with a Live Tracker in Pakistandanishmna97
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxFIDO Alliance
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxFIDO Alliance
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxMarkSteadman7
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdfMuhammad Subhan
 
ADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptxADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptxFIDO Alliance
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAnitaRaj43
 
Microsoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireMicrosoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireExakis Nelite
 
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?Paolo Missier
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptxFIDO Alliance
 
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...SOFTTECHHUB
 
Top 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTop 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTopCSSGallery
 
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...ScyllaDB
 
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)Paige Cruz
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightSafe Software
 
Microsoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfMicrosoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfOverkill Security
 
Navigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi DaparthiNavigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi DaparthiRaviKumarDaparthi
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentationyogeshlabana357357
 

Recently uploaded (20)

Intro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptxIntro to Passkeys and the State of Passwordless.pptx
Intro to Passkeys and the State of Passwordless.pptx
 
How to Check GPS Location with a Live Tracker in Pakistan
How to Check GPS Location with a Live Tracker in PakistanHow to Check GPS Location with a Live Tracker in Pakistan
How to Check GPS Location with a Live Tracker in Pakistan
 
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptx
 
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
“Iamnobody89757” Understanding the Mysterious of Digital Identity.pdf
 
ADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptxADP Passwordless Journey Case Study.pptx
ADP Passwordless Journey Case Study.pptx
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
Microsoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireMicrosoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - Questionnaire
 
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
(Explainable) Data-Centric AI: what are you explaininhg, and to whom?
 
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider  Progress from Awareness to Implementation.pptxTales from a Passkey Provider  Progress from Awareness to Implementation.pptx
Tales from a Passkey Provider Progress from Awareness to Implementation.pptx
 
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
 
Top 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development CompaniesTop 10 CodeIgniter Development Companies
Top 10 CodeIgniter Development Companies
 
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
 
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
 
The Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and InsightThe Zero-ETL Approach: Enhancing Data Agility and Insight
The Zero-ETL Approach: Enhancing Data Agility and Insight
 
Microsoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfMicrosoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdf
 
Navigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi DaparthiNavigating the Large Language Model choices_Ravi Daparthi
Navigating the Large Language Model choices_Ravi Daparthi
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentation
 

DTW EVEN SEM PROJECT.pptx

  • 1. DESIGN TOOL WORKSHOP - 2 BATCH-10 ECE DATE:15/03/2022
  • 2. GROUP MEMBERS 2100040351 – V.DONA RASHMITHA 2100040338 - M .A. ROUF 2100040355 - V. HEMANTH 2100040352 – M. AKSHAY KUMAR
  • 5. INTRODUCTION In this project we made a Smart Stick for the blind In this Smart stick there is a sensor that senses the obstacles or walls from 1 or half meter range and then this stick vibrates & makes a buzzing sound. This Smart Stick warns the blind person that there is an obstacle or wall in front of him/her. Then that person will be warned from obstacles or walls.
  • 6. COMPONENTS REQUIRED: ARDUINO UNO USB CABLE FOR UPLOADING CODE JUMPER WIRES BREADBOARD HC-SR04 ULTRASONIC SENSOR BUZZER LED WITH A 220-OHM RESISTOR DC BATTERIES
  • 7. HOW ULTRASONIC SENSOR WORKS • Ultrasonic sensors work by sending out a sound wave at a frequency above the range of human hearing. The transducer of the sensor acts as a microphone to receive and send the ultrasonic sound. Ultrasonic sensor like many others, use a single transducer to send a pulse and to receive the echo. The sensor determines the distance to a target by measuring time lapses between the sending and receiving of the ultrasonic pulse.
  • 9. STEPS TO MAKE THE PROJECT • Take Arduino UNO, Buzzer, Ultrasonic sensor, Vibrating motor, battery, switch, and a wooden stick or plastic pipe. • Take a stick and place the ultrasonic sensor on it. Connect the Jumper wires on it. • Then place Buzzer and Vibrating motor on the stick. • Connect the jumper wires to the buzzer and Vibrating motor. • Do connections from the circuit diagram. • Place the Arduino Nano, Battery and switch on the stick. • Upload the code. • After Uploading now check for the Blind stick.
  • 11. CODE USED TO MAKE THE PROJECT const int trigPin =13; const int echoPin =5; long duration; int distanceCm, distanceInch; void setup() { Serial.begin(9600); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); pinMode(9, OUTPUT); // Connect LED Pin D9 pinMode(3, OUTPUT); // Connect Buzzer Pin D3 }
  • 12. void loop() { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distanceCm= duration*0.034/2; distanceInch = duration*0.0133/2; Serial.println("Distance: "); Serial.println(distanceCm); delay (100); // See the Ultrasonic Sensor Value in Serial Monitor if(distanceCm < 25) // You can Change the value { digitalWrite(3, HIGH); // Buzzer ON digitalWrite(9, HIGH); // LED ON }