VEHICLE ACCIDENT PREVENTATION USING EYE BLINK SENSOR PRESENTED BY LAKSHMY PREMARAJAN ASHIKA K VARGHESE AKHILA S KUMAR.

Slides:



Advertisements
Similar presentations
INDIVIDUAL PROJECT BY R.KARTHIKMANOJ
Advertisements

MICROPROCESSORS AND MICROCONTROLLERS
Indian Institute of Technology Hyderabad ELECTRONIC SWITCH CONTROL THROUGH RF(RADIO FREQUENCY) GROUP MEMBERS: Anil Kumar Loya ME12B1002 RITESH KUMAR CE12B1019.
ELECTRONIC STICK FOR BLIND PEOPLE
In this presentation you will:
Index  INTRODUCTION  HARDWARE DESCRIPTION  BLOCK DIAGRAM  COMPONENT LIST  ADVANTAGES AND APPLICATIONS  CONCLUSION.
OutLine Overview about Project Wii Robot Escaper Robot Problems and Solutions Demo.
ASPPRATECH.
 Day by day increasing population increases traffic and vehicles also which causes problems in transportation and management of traffic.  Mainly.
Indian Institute of Technology Hyderabad CONTACTLESS TACHOMETE R Group members: Moruboyina Alekhya Kodi Padmasree D.Hima Varsha.
CELL PHONE OPERATED LAND ROVER PROJECT PRESENTATION ON ELECTRONICS AND COMMUNICATION DEPARTMENT.
Black Box for vehicle diagnostics. 2 Abstract This project is an implementation of black box for vehicular safety. Key features: Diagnostic check of vehicle.
PIC microcontrollers. PIC microcontrollers come in a wide range of packages from small chips with only 8 pins and 512 words of memory all the way up to.
AUTOMATIC ROOM LIGHT CONTROLLER WITH BIDIRECTIONAL VISITOR COUNTER
Teachers Name : Suman Sarker Telecommunication Technology Subject Name : Microcontroller & Embedded System Subject Code : 6871 Semester : 7th Department.
MOBILE OPERATING ROBOT ON EMBEDDED SYSTEM
One of the most important feature of the microcontroller is a number of input/output pins used for connection with peripherals. In the case of PIC 167CX,
© 2008 RoboRubik1 11 Technical Communication Skills Practicum Theory of Operation and Hardware Design Narrative.
MICROPROCESSOR AND MICRO CONTROLLER
Automatic accident avoiding system PROJECT MEMBERS MUTHUKUMAR.K (05ME33) SAKTHIDHASAN.S (05ME39) SAKTHIVEL.N (05ME40) VINOTH.S (05ME56) PROJECT GUIDE:
ARM BASED SMART HELMET USING XBee WITH ALCOHOL DETECTION
OBSTACLE AVOIDANCE ROBOT
AUTOMATIC RAILWAY GATE CONTROLLING AND TRACK SWITCHING
CONTENTS: 1.Abstract. 2.Objective. 3.Block diagram. 4.Methodology. 5.Advantages and Disadvantages. 6.Applications. 7.Conclusion.
Department of Electronic & Electrical Engineering LCD character display (parallel interface). How to interface a LCD character display to a PIC.
EMBEDDED SYSTEM & ROBOTICS. Introduction to robotics Robots are machines capable of carrying out a complex series of actions automatically. Robotics is.
SUBMITTED BY LENIN C INTRODUCTION Railways - cheapest mode of transportation. Aims to avoid accidents. Using simple electronic components- automate.
Department of Electronic & Electrical Engineering Introduction to microcontrollers A microcontroller is a small computer on a single integrated circuit.
1. 2 The electrocardiograph (ECG) is an instrument, which records the electrical activity of the heart. Electrical signal from the heart characteristically.
HOME AUTOMATION USING PC DONE BY RAJESHKUMAR S SRI HARSHA D.
ECE 445 Track Vehicle Project Team 25: Kuangxiao Gu Jialun Liu Jilin Jiang.
BLDC Motor Speed Control with RPM Display. Introduction BLDC Motor Speed Control with RPM Display  The main objective of this.
Reverse Parking Sensor Circuit.
MICROCONTROLLER INTERFACING WITH STEPPER MOTOR MADE BY: Pruthvirajsinh Jadeja ( ) COLLEGE:DIET BRANCH:EC.
Simple Water Level Controller Circuit with Microcontroller and Alarm.
PROJECT ON FAULT ANALYSIS AND DETECTION GUIDED BY:: SUBMITTED BY:- MS. SHUBRA GOEL.
Arduino Based DC Motor Speed Control
SUBMITTED BY EDGEFX TEAM PORTABLE CODED WIRELESS MESSAGE COMMUNICATION BETWEEN TWO PARTIES SECRETLY WITH LCD DISPLAY.
TRANSMISSION LINE MULTIPLE FAULT DETECTION AND INDICATION TO EB
ADVANCED WATER LEVEL CONTROLLER
A SEMINOR ON USING ALCOHOLIC SENSOR AUTOMATIC VEHICLE CONTROL GUIDED BY:: SUBMITTED BY:- RAM NAGEENA YADAV( ) Er.AANCHAL AGARWAL TEJ PRAKASH SHARMA( )
D.L.PRASSANA KUMAR T.MAHENDAR SOFI SHAIK. ABSTRACT  This circuit turns on the horn of the bike to alert you of the impending theft if anybody tries to.
WATER LEVEL INDICATOR AND AUTOMATIC MOTOR SWITCHING SYSTEM
ARM CORTEX (STM32) BASED MOTOR SPEED CONTROL SUBMITTED BY EDGEFX TEAM.
VEHICLE ACCIDENT PREVENTATION USING EYE BLINK SENSOR
Arduino based Automatic Temperature Controlled Fan Speed Regulator.
PROJECT PRESENTATION ON GSM BASED GAS LEAKAGE DETECTION SYSTEM
Mobile phone keypad sensed password entry for door opening.
Application Case Study Christmas Lights Controller
INTRODUCTION The more you drive your car, the more you are at risk.
HIDDEN ACTIVE CELL PHONE DETECTOR
UP AND DOWN CONTROLLED SPEED OF DC MOTOR IN EMBEDDED SYSTEM
Aim Of The Project To implement the obstacle avoidance and Zigbee control functions for Omni directional mobile robot.
Arduino Based Industrial appliances control system by decoding dual tone multi frequency signals on GSM / CDMA network. Submitted by:
ARDUINO BASED AUTOMATIC TEMPERATURE BASED FAN SPEED CONTROLLER
Home automation using Arduino & ‘PIR sensor’
ANTI-COLLISON AND BRAKING SYSTEM
REMOTE JAMMING DEVICE.
Automatic human detector garbage can.
(EVENING ON TO MORNING OFF)
ARDUINO FOUR QUADRANT DC MOTOR CONTROL
ARDUINO LINE FOLLOWER ROBOT
Automatic Railway Gate Control System
PWM BASED SPEED CONTROL FOR DC MOTOR
RAILWAY TRACK SNAP NOTIFICATION
AUTOMATIC SPEED CONTROL BASED ON ZONES
AIM: To control the movement of a manual wheelchair by means of human voice for paralyzed patients.
enerlogic Energy Smart Office Control System
8051 Micro Controller.
Supervised by : Dr. Kamel Subhi
Presentation transcript:

VEHICLE ACCIDENT PREVENTATION USING EYE BLINK SENSOR PRESENTED BY LAKSHMY PREMARAJAN ASHIKA K VARGHESE AKHILA S KUMAR

 INTRODUCTION  BLOCK DIAGRAM  WORKING  FLOW CHART  PROGRAM  CIRCUIT DIAGRAM  COMPONENTS USED POWER SUPPLY PIC MICROCONTROLLER EYE BLINK SENSOR RELAY DC MOTOR BUZZER LCD DISPLAY  PCB LAYOUT  SOFTWARE USED  ADVANTAGES  LIMITATIONS  RESULT  FUTURE SCOPE  CONCLUSION  REFRENCES

 Vehicle accidents are most common if the driving is inadequate.  Driver drowsiness is recognized as an important factor in the vehicle accidents.  This project involves measure and controls the eye blink using IR sensor. The IR transmitter is used to transmit the infrared rays in our eye.

Microcontroller PIC Buzzer DC Motor Eye blink sensor Comparator

 The eye-blink sensor illuminats the eye with infrared light, monitoring the changes in the reflected light  The output is active high for Eye close and can be given directly to microcontroller for interfacing applications.  Consequently a buzzer is activated in order to wake the driver.  The motor of the vehicle is slowed down through a relay switch so as to prevent impending accident

#include #define MOTOR RC2 #define BUZZER RC3 #define RS RB7 #define EN RB6 #define LCD_D0 RB5 // lcd's msb nibble 0 #define LCD_D1 RB4 // lcd's msb nibble 1 #define LCD_D2 RB3 // lcd's msb nibble 2 #define LCD_D3 RB2 // lcd's msb nibble 3

void init(void){ INTCON= 0b ; TRISD= 0b ; TRISC= 0b ; TRISA= 0b ; TRISB= 0b ; T2CON= 0b ; } void interrupt my_isr(void) { if((INTE)&&(INTF)) { Eyeblink++; time=10; INTF=0; }

if((TMR2IE)&&(TMR2IF)) { Count++; if(Count==40) { Seconds--; Count=0; } TMR2IF=0; } // void main(void) { init(); DelayMs(100); BUZZER=0; MOTOR=1; lcd_init();

lcd_puts(" eye blink based",1,0); lcd_puts(" vehicle control",2,0); DelaySec(2); while(1) { lcd_puts(" Eye Blink ",1,0); lcd_puts(" sensing.... ",2,0); time=10; while(time) { lcd_displaynum2(0xCD,time); time--; DelayMs(250); DelayMs(100); }

lcd_puts("Driver slept!! ",1,0); lcd_puts(" Speed Down... ",2,0); MOTOR=0; BUZZER=1; DelaySec(1); while(time!=10); MOTOR=1; BUZZER=0; }

The main components usedin this project are  PIC Microcontroller  Eye Blink Sensor  Relay  DC Motor  LCD Display  Buzzer

Components in PCB

Pin Diagram

PIC microcontrollers are based on RISC architecture. (RISC -Reduced Instruction Set Computing). Harvard architecture 16 bit microcontroller PIC –Peripheral interface controller

8K Program memory 40 pin with 33 input /output pin PORTS-A,B,C,D,E PORTS are configured as input output pins Configured using TRIS REGISTERS Operating frequency 20 MHz Economically feasible

 indication by EYE BLINK LED  Instant output digital signal for directly Connecting to microcontroller  Compact Size  Working Voltage +5V DC

 an electromagnetic switch  allow current to flow between 2 points thereby closing the circuit.

L293D Pin description LOGIC CIRCUIT Functional description

 L293D is a dual motor driver integrated circuit (IC).  act as current amplifiers. This higher current signal is used to drive the motors.  L293D contains two inbuilt driver circuits.  In common mode of operation, two DC motors can be driven simultaneously, both in forward and reverse direction.  Enable pins 1 and 9 (corresponding to the two motors) must be high for motors to start operating.

 A signaling device, usually electronic, typically used in automobiles, household appliances.  Usually illuminates a light on the appropriate button or control panel.  Sounds a warning in the form of a continuous or intermittent buzzing or beeping sound.

 consists of two lines, 20 characters per line.  3 control lines and 8 I/O lines. - 8 data pins D7:D0 - RS: Register Select - R/W: Read or Write - E: Enable (Latch data)

 MikroC is a powerful, feature rich development tool for PIC microcontrollers.  ProvideS the programmer with easiest possible solution for developing applications for embedded systems, without compromising performance or control.

The prime purpose is to provide safety measures.  It is used for Automatic parking.  It can be used in wireless technology.  The eye blink module of this project can be separately used for RFID detection in global industries.  It can be used in image processing application by mera module

 Development of this kind of model reduces the risk of road accidents  After complete research and development of this project, it can be implemented on every vehicle in the industry thus increasing safety on roads.  Drivers who have been driving for long hours wouldn’t have to worry even if they fall asleep suddenly and therefore passengers are also safe.

 Development of a hybrid microcontroller for a vehicle which also consists of an alcohol detector which will sense if the driver is drunk and would not start the vehicle.  If the person who is driving takes alcohol then the vehicle will be stopped immediately by giving alarms.

 A complete study on road safety is going to be the next boom in the automobile industry for it to flourish and survive as every human being wants to be safe with all the comforts at the same time  Reduce the number of accidents.  It is also used for security alerts where 24 hours surveillance is required.

 “IMPROVED DRIVER FATIGUE DETECTION SYSTEM BASED ON EYE TRACKING AND DYNAMIC TEMPLATE MATCHING” by Wenn-Bing Horng and Chih-Yuan Chen,Department of Computer Science and Information Engineering,Tamkang University,Taipei,Tatwan  Muhammad ali mazidi - microcontroller and embedded systems  International journal of emerging technology and advanced engineering website: (issn , iso 9001:2008 certified journal, volume 3, issue 5, may 2013) 

THANK YOU