Automatic Fire Fighting System Athan Jefferson Advisor Dr. Junkan Ma Instructor Dr. Cris Koutsougeras ET 494 Senior Design II.

Slides:



Advertisements
Similar presentations
EMS1EP Lecture 8 Pulse Width Modulation (PWM)
Advertisements

EMS1EP Lecture 9 Analog to Digital Conversion (ADC) Dr. Robert Ross.
Revision.
Servo Background Servos provide control of rotary position Servos are used extensively in the remote control hobby world for: Aircraft (flaps, ailerons,
Anurag Dwivedi & Rudra Pratap Suman.  Open Source electronic prototyping platform based on flexible easy to use hardware and software.
Panasonic EVE-KC2F2024B 24 pulses per revolution 6mm diameter flattened output shaft output type: quadrature (incremental) minimum life: 15,000 rotations.
Automotive Fire Fighting System Athan Jefferson Advisor Dr. Junkan Ma Instructor Dr. Cris Koutsougeras ET 493 Senior Design I.
PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
IR Object Detection living with the lab IR light from LED IR light reflected off object IR LED IR receiver Infrared (IR) light leaving an LED reflects.
1 Introduction to Coding. 2 Example Codes A lot of example codes are given with Arduino IDE A code can often be based on a previous example rather than.
Introduction to Arduino Prepared by R. Lamond.  “Arduino is an open-source electronics prototyping platform based on flexible, easy- to-use hardware.
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.
PROGRAMMING WITH ARDUINO. Arduino An open-source hardware platform based on an Atmel AVR 8-bit microcontroller and a C++ based IDE Over boards.
Working with Arduino: Lesson #1: Getting Acquainted with the Kit EGN1007.
Basic Circuits – Lab 2 Arduino and Sensors
Sensors Material taken from Robotics with the Boe-Bot.
Microcontroller Hands-on Workshop #3 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers November 7, 2009.
PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
Ryan Courtney Senior Design II Advisor: Junkun Ma.
The Voice Operated and Wirelessly Controlled Elevator Jeremy Hester Advisor: Dr. Mohammad Saadeh Class: ET 494 (Senior Design II), Fall 2013 Class Professor:
Camilo Martinez Advisor : Dr. Cris Koutsougeras Dept of Computer Science and Industrial Technology Southeastern Louisiana University.
Arduino. What is it? A open-source software suite and single-board microcontroller. Allows easy and affordable prototyping of microcontroller applications.
Water-saving Shower Faucet By: LaJerrika Carney & Ryan McDaniel Advisor: Dr. Mohammad Saadeh Class Professor: Dr. Cris Koutsougeras ET Senior.
Material taken from Robotics with the Boe-Bot
Vertical Axis Wind Turbine Simulation
Servos The material presented is taken from a variety of sources including:
ARDUINO 1. Basics  Comments  /* * Blink * * The basic Arduino example. Turns on an LED on for one second, * then off for one second, and so on... We.
Arduino Circuits and Code. int ledPin = 9; void setup() { pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, LOW); delay(1000); digitalWrite(ledPin,
Microcontroller Hands-on Workshop #2 Ahmad Manshad New Mexico State University Institute of Electrical and Electronics Engineers October 31, 2009.
TechKnowTone Contents: Sensor Features Sensor Connections Sample Sketch Questions …Sensor Features… Arduino Coding – Distance Sensors.
Arduino Training New Mexico Mathematics, Engineering, and Science Achievement (NM MESA) Getting Started.
Robot Project by Ahmad Shtaiyat Supervised by Dr. Salem Al-Agtash.
Temperature Sensor TYWu. Seeed’s Temperature Sensor Picture.
SAMI MAKERSPACE MAKE: AN ELECTRONICS WORKSHOP. SERVOS Precise rotations.
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.
Automatic Fire Fighting System Athan Jefferson Advisor Dr. Junkan Ma Instructor Dr. Cris Koutsougeras ET 493 Senior Design I.
 Definition of Micro-Controllers  Comparison between types of Micro- Controllers  Pin Identification of ATMEGA32.
Temperature Text Message Alert System Travis Midthun Dr. Stanislaw Legowski Department of Electrical and Computer Engineering.
IR Object Detection living with the lab IR light from LED IR light reflected off object IR LED IR receiver Infrared (IR) light leaving an LED reflects.
Lecture 9: Introduction to Arduino Topics: Arduino Fundamentals, Bean Date: Mar 22, 2016.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
Programming in Arduino Materials:Arduino Board Casperelectronics Pre Pres. Notes Photos from workshop?
Gesture-Controlled LED Coffee Table with B.L.O.X. Final Presentation Josh Pack | Esther Kim | Ryan Dwyer Project #16 December 7, 2012 ECE 445 Fall 2012.
Istituto Tecnico Industriale A.Monaco EURLAB Object Detection Object Detection by Ultrasonic How to install and program a ultra sonic sensor with Arduino.
Capstone Design Middle Evaluation Rover Song Kee Hong Jo Kyeong Jin.
Arduino “Getting Started” Instructor : Dr Matthew Miss Khin Yi Kyaw
RESTORATION OF A PNEUMATICALLY CONTROLLED END-OF-ARM-TOOLING (EOAT) FOR CLASSROOM TEACHING Trent Lott and Chase Keller Advisor: Dr. Mohammad Saadeh Class:
Assessment of Soft Artificial Skin with Pressure Sensibility Southeastern Louisiana University.
Assessment of Soft Artificial Skin with Pressure Sensibility Southeastern Louisiana University.
Ultrasonic Sensor TYWu.
Infrared Proximity Sensors & Liquid Crystal Display Instructor Dr Matthew Khin Yi Kyaw.
CSE 341 Project : Ultrasonic Radar PRESENTED BY: NAME : AKIFA TASNEEM ID : SECTION: 02 1.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
Harpeth Hall Jan 2016 Introduction to Arduino Prepared for Harpeth Hall Winterim January 2016.
Get Your Project Started with Arduino
Sensors with Arduino A Microcontroller.
Ultrasonic Distance Sensor
Arduino motor control using servo & ultrasonic sensor
UCD ElecSoc Robotics Club 2017/2018
Get Your Project Started with Arduino
Sensors with Arduino A Microcontroller.
Arduino Uno and sensors
SArduino Training 2018 cho THPT Saigon Institute of Technology
Analog Input through POT
Ultrasonic Distance Sensor
Arduino : Introduction & Programming
Programming 2: The Arduino IDE & First Sketches
Water-saving Shower Faucet
Arduino程式範例.
Ultrasonic Distance Sensor
Presentation transcript:

Automatic Fire Fighting System Athan Jefferson Advisor Dr. Junkan Ma Instructor Dr. Cris Koutsougeras ET 494 Senior Design II

Introduction

Objective To design and fabricate an automatic firefighting system prototype. To display the knowledge gained at Southeastern University

Methodology Use infrared sensors to detect a fire source and the distance the fire source is away from the system Use distance sensor to calculate distance away from source Use Arduino-uno microcontroller to controller infrared sensor, distance sensor, servo,and linear actuator. Use C programming algorithms to calculate the angle of water nozzle based on and water pressure distance

Wiring diagram

Flow chart

Pseudo code

#include // include library #include int trig = 7; // trig on senor on pin 2 int echo = 8; // echo on pin 4 long dur, dist; // initializing duration and distance int maxi = 450; // Maximum range int mini = 2; // MInimum int td = 1000; // Time delay 1 sec. int LED = 13; int black = 5; int red = 6; //declare linaer actuator variables int pot = A0; int pos; float temp, atemp; // temperature variable,surounding temperature float irTemperature, ambTemperature; float get_temp(); // method to get temperature long get_distance(); //mothod to get distance Servo base; // declare base servo static const byte data = 2; // ir sensor data line to arduino static const byte clock = 3; // Must be either pin 2 or pin 3 static const byte acq = 4; // IR sensor aquire on pin 4 static const TempUnit SCALE = FAHRENHEIT; // Options are CELSIUS, FAHRENHEIT IRTemp irTemp( acq, clock, data); void setup (){ Serial.begin(9600); pinMode (black, OUTPUT); pinMode (red, OUTPUT); pinMode (trig, OUTPUT); pinMode (echo, INPUT); pinMode (LED, OUTPUT); base.attach(9); }

Budget IteamCostQuantityTotal Distance Sensor Infered Temperature sensor Arduino Uno Standard Servo9.991 L12 liner actuator w/potentiometer Lynxmotion Aluminum Tubing Connector Hub (pair) HUB Lynxmotion Aluminum Tubing - 3" AT Lynxmotion Aluminum "C" Servo Bracket with Ball Bearings Lynxmotion Aluminum "L" Connector Bracket Two Pack ASB Lynxmotion Base Rotate Kit (no servos) Plywood 2X Shipping65.43 Total Grand Total315.45

Deliverables October 25 –prepare and present proposal and presentation of design. COMPLETE October 30 – research and finalize all equations needed to control nozzle angle based on distance. Complete November 7 – Have complete parts list and start ordering parts needed for design. Complete November 21 – design pseudo code and flow chart of system. COMPLETE December 23– Start fabrication of system structure and order any other parts needed for project. Complete January 7 – Start programming Arduino. Complete April 18 – complete programming and start testing. Complete May 2 – Finish project and start final presentation preparations. incomplete

Pictures

Questions ?

Thank you