SlideShare a Scribd company logo
1 of 2
In this fast moving world people come and go from one place to another,
greeting all who meet on the way and answering the strangers in the most polite manner possible.
But the same world proves very difficult for those in our society who cannot hear: the deaf.
When a person visits a place, we first ring the bell on the doorpost. This cannot be heard by an
old man or a deaf person who resides at his home.
Here comes the action of our application:
When a visitor comes, a sensor which is attached to the gate detects the presence of a person and
alerts the deaf man inside by either lighting a bulb or through a computer message, if the person
is working on a computer.
How does it work?
The technological aspect is as follows:
 Arduino Uno
 IR Distance Sensor
 Wires and Printed circuits boards
 Led Red
 Arduino Compiler
Working:
Arduino Uno takes the signal from IR Distance sensor , IR distance sensor sense the object . In
Arduino Uno Board there is input pin and analog pin , IR distance sensor connect with analog
pin to read the signal from sensor and led’s are connected to input pin A9.When an object come
near to the sensor the sensor send the signal to the analog pin and it converted into digital
signal,when the signal is 1 the led will blink when the signal is 0 it will not blink.
DOOR ALERT SYSTEM FOR DEAF PEOPLE “DAD”
Source Code:
const int ledPin = 13; // led connected to digital pin 13
const int knockSensor = A0; // the piezo is connected to analog pin 0
const int threshold = 100; // threshold value to decide when the detected sound is a knock or not
// these variables will change:
int sensorReading = 0; // variable to store the value read from the sensor pin
int ledState = LOW; // variable used to store the last LED status, to toggle the light
void setup() {
pinMode(ledPin, OUTPUT); // declare the ledPin as as OUTPUT
Serial.begin(9600); // use the serial port
}
void loop() {
// read the sensor and store it in the variable sensorReading:
sensorReading = analogRead(knockSensor);
// if the sensor reading is greater than the threshold:
if (sensorReading >= threshold) {
// toggle the status of the ledPin:
ledState = !ledState;
// update the LED pin itself:
digitalWrite(ledPin, ledState);
// send the string "Knock!" back to the computer, followed by newline
Serial.println("Hey You Deaf Open the Door .");
}
delay(100); // delay to avoid overloading the serial port buffer
}

More Related Content

What's hot

What's hot (20)

Project Instrumentation (Smart Trashbin)
Project Instrumentation (Smart Trashbin)Project Instrumentation (Smart Trashbin)
Project Instrumentation (Smart Trashbin)
 
Robotics Session day 1
Robotics Session day 1Robotics Session day 1
Robotics Session day 1
 
Arduino Lecture 2 - Interactive Media CS4062 Semester 2 2009
Arduino Lecture 2 - Interactive Media CS4062 Semester 2 2009Arduino Lecture 2 - Interactive Media CS4062 Semester 2 2009
Arduino Lecture 2 - Interactive Media CS4062 Semester 2 2009
 
Lec 5
Lec 5Lec 5
Lec 5
 
Presentation S4A
Presentation S4A Presentation S4A
Presentation S4A
 
Home automationusing ir remote
Home automationusing ir remote Home automationusing ir remote
Home automationusing ir remote
 
Arduino electronics cookbook
Arduino electronics cookbookArduino electronics cookbook
Arduino electronics cookbook
 
Arduino spooky projects_class1
Arduino spooky projects_class1Arduino spooky projects_class1
Arduino spooky projects_class1
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 
Arduino for Beginners
Arduino for BeginnersArduino for Beginners
Arduino for Beginners
 
Arduino workshop sensors
Arduino workshop sensorsArduino workshop sensors
Arduino workshop sensors
 
Arduino Intro Guide 2
Arduino Intro Guide 2Arduino Intro Guide 2
Arduino Intro Guide 2
 
Fire Detection & Path Deviation Robot
Fire Detection & Path Deviation RobotFire Detection & Path Deviation Robot
Fire Detection & Path Deviation Robot
 
Reverse car-parking
Reverse car-parkingReverse car-parking
Reverse car-parking
 
Buy arduino zero by robomart
Buy arduino zero by robomartBuy arduino zero by robomart
Buy arduino zero by robomart
 
applications of arduino
applications of arduinoapplications of arduino
applications of arduino
 
Basic arduino sketch example
Basic arduino sketch exampleBasic arduino sketch example
Basic arduino sketch example
 
Buy Arduino Uno r3 india
Buy Arduino Uno r3 indiaBuy Arduino Uno r3 india
Buy Arduino Uno r3 india
 
Arduino Day 1 Presentation
Arduino Day 1 PresentationArduino Day 1 Presentation
Arduino Day 1 Presentation
 
Motivation to Robotics
Motivation to RoboticsMotivation to Robotics
Motivation to Robotics
 

Viewers also liked

آموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجم
آموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجمآموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجم
آموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجمfaradars
 
3. slide lezioni comunicazione interpersonale2008
3. slide lezioni comunicazione interpersonale20083. slide lezioni comunicazione interpersonale2008
3. slide lezioni comunicazione interpersonale2008imartini
 

Viewers also liked (8)

Truyện Dragon ball tập 1
Truyện Dragon ball tập 1Truyện Dragon ball tập 1
Truyện Dragon ball tập 1
 
New Doc 7
New Doc 7New Doc 7
New Doc 7
 
New Doc
New DocNew Doc
New Doc
 
آموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجم
آموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجمآموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجم
آموزش تحقیق در عملیات (برنامه ریزی خطی) - بخش پنجم
 
Liderazgo Steve Jobs
Liderazgo Steve JobsLiderazgo Steve Jobs
Liderazgo Steve Jobs
 
футбол 10 лет
футбол 10 летфутбол 10 лет
футбол 10 лет
 
3. slide lezioni comunicazione interpersonale2008
3. slide lezioni comunicazione interpersonale20083. slide lezioni comunicazione interpersonale2008
3. slide lezioni comunicazione interpersonale2008
 
Meiosis
MeiosisMeiosis
Meiosis
 

Similar to DAD

Automatic Door Opener using PIR Sensor
Automatic Door Opener using PIR SensorAutomatic Door Opener using PIR Sensor
Automatic Door Opener using PIR SensorRAGHUVARMA09
 
Arduino projects & tutorials
Arduino projects & tutorialsArduino projects & tutorials
Arduino projects & tutorialsAnshu Pandey
 
Color Sensor.pptx
Color Sensor.pptxColor Sensor.pptx
Color Sensor.pptxRituSachan2
 
Robotics and Automation Using Arduino
Robotics and Automation Using ArduinoRobotics and Automation Using Arduino
Robotics and Automation Using ArduinoABHISHEKJAISWAL282
 
02 General Purpose Input - Output on the Arduino
02   General Purpose Input -  Output on the Arduino02   General Purpose Input -  Output on the Arduino
02 General Purpose Input - Output on the ArduinoWingston
 
Smart Safety Door based on Arduino Uno R3
Smart Safety Door based on Arduino Uno R3Smart Safety Door based on Arduino Uno R3
Smart Safety Door based on Arduino Uno R3Ziddan Kundrat
 
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors B...
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors  B...Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors  B...
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors B...Faqih Fadhila Ardiansyah
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)inventionjournals
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI) International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI) inventionjournals
 
Porte à puce - Smart Safety Door based on Arduino UNO R3
Porte à puce - Smart Safety Door based on Arduino UNO R3Porte à puce - Smart Safety Door based on Arduino UNO R3
Porte à puce - Smart Safety Door based on Arduino UNO R3Meifani Sumadijaya
 
AUTOMATIC ROOM LIGHTING SYSTEM.pptx
AUTOMATIC ROOM LIGHTING SYSTEM.pptxAUTOMATIC ROOM LIGHTING SYSTEM.pptx
AUTOMATIC ROOM LIGHTING SYSTEM.pptxAayush Sharma
 
Electronz_Chapter_6.pptx
Electronz_Chapter_6.pptxElectronz_Chapter_6.pptx
Electronz_Chapter_6.pptxMokete5
 
Arduino embedded systems and advanced robotics
Arduino embedded systems and advanced roboticsArduino embedded systems and advanced robotics
Arduino embedded systems and advanced roboticsShubham Bhattacharya
 
Analog data transmission on rf module using arduino
Analog data transmission on rf module using arduinoAnalog data transmission on rf module using arduino
Analog data transmission on rf module using arduinoSagar Srivastav
 
Obstacle and edge detector report.
Obstacle and edge detector report.Obstacle and edge detector report.
Obstacle and edge detector report.Himanshu Kumar Singh
 

Similar to DAD (20)

Arduino
ArduinoArduino
Arduino
 
ir sensor.docx
ir sensor.docxir sensor.docx
ir sensor.docx
 
Automatic Door Opener using PIR Sensor
Automatic Door Opener using PIR SensorAutomatic Door Opener using PIR Sensor
Automatic Door Opener using PIR Sensor
 
Arduino projects & tutorials
Arduino projects & tutorialsArduino projects & tutorials
Arduino projects & tutorials
 
UEE PPT.pptx
UEE PPT.pptxUEE PPT.pptx
UEE PPT.pptx
 
Color Sensor.pptx
Color Sensor.pptxColor Sensor.pptx
Color Sensor.pptx
 
Robotics and Automation Using Arduino
Robotics and Automation Using ArduinoRobotics and Automation Using Arduino
Robotics and Automation Using Arduino
 
Arduino
ArduinoArduino
Arduino
 
02 General Purpose Input - Output on the Arduino
02   General Purpose Input -  Output on the Arduino02   General Purpose Input -  Output on the Arduino
02 General Purpose Input - Output on the Arduino
 
Smart Safety Door based on Arduino Uno R3
Smart Safety Door based on Arduino Uno R3Smart Safety Door based on Arduino Uno R3
Smart Safety Door based on Arduino Uno R3
 
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors B...
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors  B...Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors  B...
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors B...
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI) International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
sensors.pptx
sensors.pptxsensors.pptx
sensors.pptx
 
Porte à puce - Smart Safety Door based on Arduino UNO R3
Porte à puce - Smart Safety Door based on Arduino UNO R3Porte à puce - Smart Safety Door based on Arduino UNO R3
Porte à puce - Smart Safety Door based on Arduino UNO R3
 
AUTOMATIC ROOM LIGHTING SYSTEM.pptx
AUTOMATIC ROOM LIGHTING SYSTEM.pptxAUTOMATIC ROOM LIGHTING SYSTEM.pptx
AUTOMATIC ROOM LIGHTING SYSTEM.pptx
 
Electronz_Chapter_6.pptx
Electronz_Chapter_6.pptxElectronz_Chapter_6.pptx
Electronz_Chapter_6.pptx
 
Arduino embedded systems and advanced robotics
Arduino embedded systems and advanced roboticsArduino embedded systems and advanced robotics
Arduino embedded systems and advanced robotics
 
Analog data transmission on rf module using arduino
Analog data transmission on rf module using arduinoAnalog data transmission on rf module using arduino
Analog data transmission on rf module using arduino
 
Obstacle and edge detector report.
Obstacle and edge detector report.Obstacle and edge detector report.
Obstacle and edge detector report.
 

DAD

  • 1. In this fast moving world people come and go from one place to another, greeting all who meet on the way and answering the strangers in the most polite manner possible. But the same world proves very difficult for those in our society who cannot hear: the deaf. When a person visits a place, we first ring the bell on the doorpost. This cannot be heard by an old man or a deaf person who resides at his home. Here comes the action of our application: When a visitor comes, a sensor which is attached to the gate detects the presence of a person and alerts the deaf man inside by either lighting a bulb or through a computer message, if the person is working on a computer. How does it work? The technological aspect is as follows:  Arduino Uno  IR Distance Sensor  Wires and Printed circuits boards  Led Red  Arduino Compiler Working: Arduino Uno takes the signal from IR Distance sensor , IR distance sensor sense the object . In Arduino Uno Board there is input pin and analog pin , IR distance sensor connect with analog pin to read the signal from sensor and led’s are connected to input pin A9.When an object come near to the sensor the sensor send the signal to the analog pin and it converted into digital signal,when the signal is 1 the led will blink when the signal is 0 it will not blink. DOOR ALERT SYSTEM FOR DEAF PEOPLE “DAD”
  • 2. Source Code: const int ledPin = 13; // led connected to digital pin 13 const int knockSensor = A0; // the piezo is connected to analog pin 0 const int threshold = 100; // threshold value to decide when the detected sound is a knock or not // these variables will change: int sensorReading = 0; // variable to store the value read from the sensor pin int ledState = LOW; // variable used to store the last LED status, to toggle the light void setup() { pinMode(ledPin, OUTPUT); // declare the ledPin as as OUTPUT Serial.begin(9600); // use the serial port } void loop() { // read the sensor and store it in the variable sensorReading: sensorReading = analogRead(knockSensor); // if the sensor reading is greater than the threshold: if (sensorReading >= threshold) { // toggle the status of the ledPin: ledState = !ledState; // update the LED pin itself: digitalWrite(ledPin, ledState); // send the string "Knock!" back to the computer, followed by newline Serial.println("Hey You Deaf Open the Door ."); } delay(100); // delay to avoid overloading the serial port buffer }