Arduino Alarm System Guanglong Hu GeoSc 597 Final Project

Slides:



Advertisements
Similar presentations
Dual H-Bridge L298N Breakout Board By Marcelo Moraes BIGDOG1971.
Advertisements

PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
Ultrasonic Sensor HC-SR04
1 Ultrasonic Distance Sensor. 2 How it Works The distance sensor emits short bursts of sound and listens for this sound to echo off of nearby objects.
Embedded Programming and Robotics Lesson 10 Ultrasonic Range Finder Range Finder1.
Sensors Material taken from Robotics with the Boe-Bot.
EE | EzBot.ca Without soldering or extensive knowledge in electronics, create a project that is Remote Controlled from any Android.
Sensors. This is a set of transmitter and receiver in one of the photoelectric sensor. Detection distance can be adjusted according to the requirements.
2/26/2015 Richard Kuo Assistant Professor
PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
RC CAR CONTROLLER BASED ON INTEL GALILEO SOC PLATFORM Nadav Shiloach Sagi Sabag Supervisor: Idan Shmuel Spring 2014 One Semester Project PROJECT’S ENDING.
S e c u r i t y L i g h t E a s t e r E l e c t r o n i c s P r o j e c t Dark Sensor Comparator Monostable Counter Light Brief Design a system that turns.
Mobile Controlled Car Students : Tasneem J. Hamayel Hanan I. Mansour Supervisor : Dr.Aladdin.
Obstacle Detection Introductory Presentation. Opening Activity If you were blindfolded, what senses would you use to find things in the room?
Material taken from Robotics with the Boe-Bot
WELCOME TO ARDUINO E-DAY CAR PROJECT MEETING – ITALY MARCH.
TechKnowTone Contents: Sensor Features Sensor Connections Sample Sketch Questions …Sensor Features… Arduino Coding – Distance Sensors.
IMDL Presentation by Li. Park Ranger Subtitle Park Ranger Block Diagram Mega 2560 Arduino Tmp Sensor Humidity Sensor XBEE LCD Buzzer LaptopGUI Motor.
Final Term Project Hi-Tek Smoke Detektor By: Rohan Sharma.
INTERNET OF EVERYTHING SDU 2016 Week 6. Getting Input from Sensors  Sensors give report on the world around it  Sensors convert physical input an electrical.
AAPT workshop W03 July 26, 2014 Saint Cloud State University, MN, USA
GOVERNMENT POLYTECHNIC RAJKOT 1 NAMEEN.NO. TADVI PRAGNESH A PATEL ANKIT D PATEL VIRAL S PATEL JAYESH M
{ Final Project Obstacle and Fire Detection Assistant for Optically Disabled People Group Members: Tahjid Ashfaque Mostafa ( ) Rafiul Hasan ( )
Istituto Tecnico Industriale A.Monaco EURLAB Object Detection Object Detection by Ultrasonic How to install and program a ultra sonic sensor with Arduino.
Istituto Tecnico Industriale A.Monaco EURLAB Object Detection Object Detection by Ultrasonic How to install and program a ultra sonic sensor with Arduino.
EEE 499 GRADUATION PROJECT FIRST-MIDTERM PRESENTATION By Sedat ONATLI & Akbar SHADAKOV Supervisor : Prof.Dr. Arif NACAROĞLU.
Forward Until Near Stop when near a wall.
Ultrasonic Sensor TYWu.
Electronic Instrumentation Project 204 Project Name: Light Level Monitor Student #1: Name ID Student #2: Name ID Student #3: Name ID.
Electronic Instrumentation Project 202 Project Name: Differential Thermometer Student #1: Name ID Student #2: Name ID Student #3: Name ID.
EV3 Attachments and Sensors. Ultrasonic Sensor  Purpose: detect distance from an object.  What it does: Generates sound waves and reads their echoes.
ARDUINO UNO The Arduino uno is a microcontroller board based on the ATmega328. It has 14 digital Input / Output pins (of which 6 can be used as PWM outputs),
Prototyping Home Automation Concepts
Introduction In this lab , we will learn
Arduino Uno – controlling LED strips
Prototyping Home Automation Concepts
Assist. Prof. Rassim Suliyev - SDU 2017
RECAP OF THE LAST LESSON
Automatic human detector garbage can.
Using the BBC micro:bit for Home Security
Sensors with Arduino A Microcontroller.
Ultrasonic Distance Sensor
Arduino motor control using servo & ultrasonic sensor
LASER SECURITY ALARM[140] DIRECTOR OF MGM’s COE,NANDED
Arduino Uno and sensors
‘SONAR’ using Arduino & ultrasonic distance sensor
LEGO Robotics Ultrasonic Sensor
Maxbotix Ultrasonic Distance Sensor
Ultrasonic Distance Sensor
Introductory Presentation
Introductory Presentation
Obstacle Detection Ultrasonic Sensor.
Introductory Presentation
Completed Design Review
Ultra Sonic Range Finder
Bluetooth operated Arduino Controlled Car
Dual H-Bridge L298N Breakout Board By Marcelo Moraes BIGDOG1971.
Teacher’s Note (do not include in student packet/slide show)
Karl Jean-Francois-James Madison H.S. & Eldiquen Mangubat-IS 232
Device Fabrication & Components Conclusions and Future Advancements
Systems and Control.
Elecbits.
CTY SAR FCPS Shawn Lupoli, Elliot Tan
Introductory Presentation
Obstacle Detection.
Systems and Control.
NGT-503 : 2-in-1 Remote Bot Obstacle Avoiding Bot
CTY SAR FCPS Alexander Velikanov
Ultrasonic Distance Sensor
Autonomous Delivery Robot
Presentation transcript:

Arduino Alarm System Guanglong Hu GeoSc 597 Final Project December 6nd, 2016

Experience of burglary Why Alarm System? Experience of burglary Door is not locked People broke in the room at 2 am Violence and crimes against specific ethic group “Meet the Flockers” by YG Fatal home invasion in Gwinnett County, Georgia No AK-47 to protect myself

Schematic of Alarm System 3 6 7 9 10 11 5 V Piezo Buzzer GND Vcc Trig Echo GND

SR04-Ultrasonic Distance Measurement Sensor Devices SR04-Ultrasonic Distance Measurement Sensor GND and Vcc : connect to GND and 5 V, power supply Trig: make the sensor to send sonar signal Echo : read the signal back

Devices Distance Calculation At 20 degree C, speed of sound = 343.5 m/s = 0.03435 cm/ms Pace of sound = 1/speed of sound = 1/0.03435 = 29.1 ms/cm Duration = signal of Echo pin / 2 Distance = Duration / Pace of Sound = Duration/29.1 = [cm] Code: int duration, distance; digitalWrite(trigPin, HIGH); delay(100); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance = (duration/2) / 29.1;

Devices Piezo Buzzer

State Machine Diagram Start distance measurement Send sonar signal, Green light on Receive signal and calculate distance Distance < 15 cm Distance > 15 cm Buzzer activated, flashing red and blue light

Demonstration

References http://www.instructables.com/id/Using-a-SR04/ http://www.instructables.com/id/SIMPLE-ARDUINO-ULTRASONIC- SENSOR-DOOR-ALARM-/ http://www.makeuseof.com/tag/how-to-make-a-simple-arduino-alarm- system/

Thank you ! Questions?