SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2090
Accident Detection System using Arduino Uno
Yu Yu Mon Win, Moe Myint Aung, Thin Thin
Lecturer, Department of Electronic Engineering, Technological University, Magway, Myanmar
How to cite this paper: Yu Yu Mon Win |
Moe Myint Aung | Thin Thin "Accident
Detection System using Arduino Uno"
Published in
International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-5, August
2019, pp.2090-2093,
https://doi.org/10.31142/ijtsrd27840
Copyright © 2019 by author(s) and
International Journal ofTrend inScientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
Commons Attribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
In highly populated countries, people lose their lives because of accidents and
poor emergency facilities every day. These lives could have been saved if
medical facilities are provided at the right time. This thesis implies a system
which is a solution to this drawback, when a vehicle meets with an accident
immediately, accelerometer module detects the signal, and it is sent to the
Arduino microcontroller programmed by C programming language. Arduino
sends an alert message through the GSM module including the location to the
police station or a rescue team. So the police can immediately trace the
location through the GPS modem after receiving the information. LCD is used
to display location message from GPS module. The system is simulated and
practically designed by the use of required hardware components and the
results are satisfied with the expectation.
KEYWORDS: Arduino, LCD, GPS, GSM, C Programming
I. INTRODUCTION
Nowadays, as the population of the world is increasing rapidly, and looking for
someone or something are becoming more difficult. On the otherhand,thehigh
demand of vehicles has also increased the traffic hazards and the road
accidents. Life of the people is under this high risk. Road accidents constitute
the major part of the accident deaths all over the world. The main cause of the
accident death is "delay in rescue". The problem is difficult to know that an
accident has occurred and to locate the position where it has happened.
An automatic accident detection system for vehicle is
introduced in this paper. This system can detect accidents in
significantly less time in which a vehicle accident had
occurred. And this system will send an accident alert
message to the proposed mobile number (rescue team,
family members, and etc…..), who will help in saving the
valuable lives. There is an accelerometer module which
detects unexpected angles change that can regarded as an
accident. The message is sent through the GSM module and
the location of the accident is detected with the help of GPS
module. This constructed device provides the optimum
solution to poor emergency facilities provided to the roads
accidents to the road accidents in the most feasible way.
II. System Block Diagram
The block diagram of accident detection system is shown in
fig.1 below. The Accelerometer ADXL335 sensor is used to
measure the accidental vibration of vehicle. The Global
Positioning System GPS module is used todetectthelocation
of vehicle. The vibration and loacation data from these
sensor are sent to Arduino UNO Microcontroller. The GSM
SIM900A module is used to send alert message to the
predefined mobile phone. The LCD is also connected to
Arduino for displaying the locationwherethevehiclearrives
to the Driver.
Fig.1: System Block Diagram of Accident Detection System
using Arduino Microcontroller
III. Required Hardware Components
The hardware components used in this design are listed as
follow:
 Arduino Uno
 GPS module (Global Positioning System )
 16 x2 LCD (Liquid Crystal Display )
 GSM Sim900 Module ( Global System for Mobile
Communication)
 SIM card(Subscriber Identification Module)
 Accelerometer ADXL 335
IJTSRD27840
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2091
They are described in Figure 2.
Fig2. Collected Devices before Installation
A. Overview of the System
Fig 3 Overall Circuit of the System
The pin assignment for the complete circuit is shown in table.
Table 1 Pin Assignments
Arduino Pins Pins of Components
A3 Pin “X” of ADXL 335
A4 Pin “Y” of ADXL335
A5 Pin “Z” of ADXL335
D2 Tx Pin of GSM Module
D3 Rx Pin Of GSM Module
D10 Tx Pin of GPS Module
D4 RS Pin of LCD
D5 EN Pin of LCD
D6 D4 Pin of LCD
D7 D5 Pin of LCD
D8 D6 Pin of LCD
D9 D7 Pin of LCD
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2092
B. Flowchart of the System
Start
NO
YES
NO
NO
Device Switch on
(GPS, GSM,LCD,ACCELEROMETER)
Accelerometer
sense X,Y,Z
direction
Exceed the
assigned
value?
Accelerometer Ready Finding Module
GPS Initializing
No GPS Range
Module
Connected ?
Finding Network
Network
Found?
Get GPS Data
Show Longitude and Latitude on
LCD
GPS Range Found
GPS is Ready
GPS is Ready
YES
YES
GSM is Ready
Send the Vibration
values to MPU
Send SMS via GSM module to the user
Show Longitude and Latitude on User’s Mobile
End
Fig 4 System Flowchart
C. Operation of The System
In this design, Arduino is used for controlling the whole
process with a GPS receiver and GSMmodule.GPSreceiveris
used for detecting the coordinate of the vehicle,GSM module
is used for sending the alert SMS with the coordinates.
Accelerometer namely ADXL 335 is used for detecting
accident or sudden change in any axis. An LCD 16x2 is also
used for displaying status of the system. After the code is
being uploaded to the Arduino, the system is ready to start.
Now, there is unexpected vibration or the axis value of
accelerometer is changed,the Arduino inform the accident
detection to the GSM module. The data from GPS module is
read by Arduino and the coordinate is get by extracting
$GPMRC String. The location is continuously displays on
LCD. But The GSM only sends SMS to the predefined number
such as the police, ambulance, or family member with the
location coordinates of accident place when the unexpected
vibration occurs . The GSM module can communicate with
the network by using AT commands.The mainrequirements
for this circuit are initializations of GSM and GPS module.
When they are correctly initialized, the system can operate
to get desired results.
IV. Tests and Results
There are four individual tests before connecting theoverall
circuit design. They are:
 Reading data from ADXL335
 Location data Reading from GPS Module
 Sending SMS message by GSM SIM900A Module
 Display on LCD
A. Reading Analog Data From ADXL335
The Arduino read data from ADXL335 accelerometer by
using the code shown in Figure 5.
Fig5. Acceleration Test and Simulation Result
B. Location Data Reading from GPS Module
Fig6. GPS Test using Arduino
The following command is used to get GPS data.
While (gps.avaiable()>0)
{byte gpsData=gps.read();
Serial.write (gpsData=gps.read());
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2093
The location can be get from above $GPRMC String. This
String means
 $ represents "NMEA Data"
 GP represents "GPS position"
 RMC represents "Recommended Minimum sentence C"
 022527.00 represents "HHMMSS.SS" (Hours, Minutes,
Second)
 A represents "Status // A=active"
 2414.85025 represents "DDMM.MMMMM" ( latitude
Degree, Minutes)
 N represents "Direction N=North, S= South"
 09714.28923 represents " DDDMM.MMMMM" (
Longitude Degree, Minutes)
 E represents "Direction E= East, W=West".
C. Sending SMS message by GSM SIM900A Module
By using the AT commands describedinTable2GSMmodule
is tested.
Table2. AT Commands
Commands Description
ATA Answer Command
ATD Dial Command
AT+CMGS Send SMS message
AT+CMGF Select SMS Message format
AT+CNMI New SMS Message indication
AT+CPIN Check Pin
Figure 7. GSM Test
D. Displaying on LCD
Interfacing between LCD and Arduino is also tested.The16x
2 LCD display is command by four bit mode.
Figure8. View of LCD Test
V. Final Installation and Tests
Since the individual tests are satisfied, then all devices are
carefully connected and upload the complete code on
Arduino. The maximum limit acceleration is predefined for
accident detection. Whenaccidentis detected,the messageis
sent as shown in Figure.
VI. Conclusion and Discussion
Nowadays, to provide a suitable safety of road accident
preventing and detection system is becoming one of the
most important things for the future generation. There is an
increasing the death of peoplebecauseofroadaccidents. The
demand for this process is to save life just on time after the
accident has occurred. There are so many ways to know the
location after the accident has occurred. This GPS and GSM
based automatic accident detection system is also one of the
less delay time and the most effectivesystemforthis present
days.
REFERENCES
[1] Araya D.S and Athulya C.K Accident Alert and Tracking
Using Arduino, Dept. of Electrical and Electronics
Engineering, Mar Baselios Institute of Technology and
Science, Nellimattom, Kerala, India, (2018).
[2] Waleed Mohy Eldeen Ibrahem: Accident Detectionand
Reporting, System using GPS and GSM Module,
Almughtaribeen University College of Engineering,
Department of Communication Fifth Year Bachelors,
(2017).
[3] Jonathan Vail: Global Positioning System, U.S
Enviromental Protection Angency Science and
Ecosystem Support Division Athens, Georgia, (2015).
[4] Kommineni Rakesh: Vehicle Tracking and Accident
Alert System, National Institute of Technology
Rourkela, (2014).
[5] Automatic Traffic Accident Detection and AlertSystem
International Journal Technology Exploration an d
Learning (IJTEL), Volume 1, Issue 1, (August 2012).

More Related Content

What's hot (20)

PDF
IRJET- Automatic Vehicle Accident Detection and Rescue System
IRJET Journal
 
PPTX
Vehicle accident detection and messaging system using GSM and arduino
Ramesh Reddy
 
PDF
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEM
Anamika Vinod
 
PPTX
Accisdent detection and notificstion system
Solomon Mutwiri
 
PPT
Automatic vehicle accident detection and messaging system using gsm and gps m...
mahesh_rman
 
PPTX
Seminar.1pptx
Vishag Trestria
 
PPTX
Embedded systems in automobiles
Tilak Marupilla
 
PPTX
eCall
IETSwindon
 
PPTX
Alcohol detection system with gsm and gps (fiem , ece)
ANUBHAVGHOSHDASTIDAR
 
PDF
Accident messaging system using GPS,GSM and MEMS
Jithin Prasad
 
PPTX
ACCIDENT DETECTION SYSTEM PPT
Joshnasai
 
PPTX
ppt on accident detection system based on Iot
rahul ranjan
 
PPTX
Autonomous Vehicles
Yamini Verma
 
PPTX
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMS
Krishna Moparthi
 
PPTX
Smart Vehicle using IoT
Mithileysh Sathiyanarayanan
 
PDF
Embedded System in Automobiles
Seminar Links
 
PPTX
Embedded system-in-automobile
Siddharth Sanskar
 
PPT
Smart parking system pegasus 9 june2010
walkthis
 
PPTX
Gps inerface in gsm network
nissy marla
 
PPTX
Home automation & security system
Aniket Maithani
 
IRJET- Automatic Vehicle Accident Detection and Rescue System
IRJET Journal
 
Vehicle accident detection and messaging system using GSM and arduino
Ramesh Reddy
 
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEM
Anamika Vinod
 
Accisdent detection and notificstion system
Solomon Mutwiri
 
Automatic vehicle accident detection and messaging system using gsm and gps m...
mahesh_rman
 
Seminar.1pptx
Vishag Trestria
 
Embedded systems in automobiles
Tilak Marupilla
 
eCall
IETSwindon
 
Alcohol detection system with gsm and gps (fiem , ece)
ANUBHAVGHOSHDASTIDAR
 
Accident messaging system using GPS,GSM and MEMS
Jithin Prasad
 
ACCIDENT DETECTION SYSTEM PPT
Joshnasai
 
ppt on accident detection system based on Iot
rahul ranjan
 
Autonomous Vehicles
Yamini Verma
 
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMS
Krishna Moparthi
 
Smart Vehicle using IoT
Mithileysh Sathiyanarayanan
 
Embedded System in Automobiles
Seminar Links
 
Embedded system-in-automobile
Siddharth Sanskar
 
Smart parking system pegasus 9 june2010
walkthis
 
Gps inerface in gsm network
nissy marla
 
Home automation & security system
Aniket Maithani
 

Similar to Accident Detection System using Arduino Uno (20)

PDF
IRJET - Accident Monitoring and Rescue System
IRJET Journal
 
PDF
Automatic Car Theft Detection System Based on GPS and GSM Technology
ijtsrd
 
PDF
IRJET - SMS based Accident Alert with GPS Coordinates
IRJET Journal
 
PDF
Design and Implementation of Alcohol Detector and Accident Detection System u...
ijtsrd
 
PDF
GPS and GSM Based Vehicle Tracking System
ijtsrd
 
PDF
IRJET- Wireless System for Vehicle Accident Detection and Reporting Using GPS
IRJET Journal
 
PDF
IRJET- Vehicle Starting using Fingerprint Sensor & Accident Detection using G...
IRJET Journal
 
PDF
IRJET- IoT based Accident Tracking and Reporting
IRJET Journal
 
PDF
B1803050722
IOSR Journals
 
PDF
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
ijtsrd
 
PDF
IRJET- Vehicle Accident Tracking and Reporting System using GPS and GSM
IRJET Journal
 
PDF
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
IRJET Journal
 
PDF
Vehicle Controlled with Smart Traffic Image Processing System and Accident De...
ijtsrd
 
PDF
Smart Security System for Automobiles using IoT
ijtsrd
 
PDF
A1103040106
IOSR Journals
 
PDF
IRJET- Accident Detection and Alerting System
IRJET Journal
 
PDF
Vehicle Theft Detection and Tracking Based on GSM and GPS
IRJET Journal
 
PDF
Review on Tunnel Field Effect Transistors (TFET)
IRJET Journal
 
PPTX
car accident-up EEE.pptx
RakibulHassan77
 
PDF
IRJET- Vehicle Accident Detection System using GSM and GPS
IRJET Journal
 
IRJET - Accident Monitoring and Rescue System
IRJET Journal
 
Automatic Car Theft Detection System Based on GPS and GSM Technology
ijtsrd
 
IRJET - SMS based Accident Alert with GPS Coordinates
IRJET Journal
 
Design and Implementation of Alcohol Detector and Accident Detection System u...
ijtsrd
 
GPS and GSM Based Vehicle Tracking System
ijtsrd
 
IRJET- Wireless System for Vehicle Accident Detection and Reporting Using GPS
IRJET Journal
 
IRJET- Vehicle Starting using Fingerprint Sensor & Accident Detection using G...
IRJET Journal
 
IRJET- IoT based Accident Tracking and Reporting
IRJET Journal
 
B1803050722
IOSR Journals
 
Smart Highway Technology using Intelligent Black Box for Vehicle Accident Mon...
ijtsrd
 
IRJET- Vehicle Accident Tracking and Reporting System using GPS and GSM
IRJET Journal
 
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
IRJET Journal
 
Vehicle Controlled with Smart Traffic Image Processing System and Accident De...
ijtsrd
 
Smart Security System for Automobiles using IoT
ijtsrd
 
A1103040106
IOSR Journals
 
IRJET- Accident Detection and Alerting System
IRJET Journal
 
Vehicle Theft Detection and Tracking Based on GSM and GPS
IRJET Journal
 
Review on Tunnel Field Effect Transistors (TFET)
IRJET Journal
 
car accident-up EEE.pptx
RakibulHassan77
 
IRJET- Vehicle Accident Detection System using GSM and GPS
IRJET Journal
 
Ad

More from ijtsrd (20)

PDF
A Study of School Dropout in Rural Districts of Darjeeling and Its Causes
ijtsrd
 
PDF
Pre extension Demonstration and Evaluation of Soybean Technologies in Fedis D...
ijtsrd
 
PDF
Pre extension Demonstration and Evaluation of Potato Technologies in Selected...
ijtsrd
 
PDF
Pre extension Demonstration and Evaluation of Animal Drawn Potato Digger in S...
ijtsrd
 
PDF
Pre extension Demonstration and Evaluation of Drought Tolerant and Early Matu...
ijtsrd
 
PDF
Pre extension Demonstration and Evaluation of Double Cropping Practice Legume...
ijtsrd
 
PDF
Pre extension Demonstration and Evaluation of Common Bean Technology in Low L...
ijtsrd
 
PDF
Enhancing Image Quality in Compression and Fading Channels A Wavelet Based Ap...
ijtsrd
 
PDF
Manpower Training and Employee Performance in Mellienium Ltdawka, Anambra State
ijtsrd
 
PDF
A Statistical Analysis on the Growth Rate of Selected Sectors of Nigerian Eco...
ijtsrd
 
PDF
Automatic Accident Detection and Emergency Alert System using IoT
ijtsrd
 
PDF
Corporate Social Responsibility Dimensions and Corporate Image of Selected Up...
ijtsrd
 
PDF
The Role of Media in Tribal Health and Educational Progress of Odisha
ijtsrd
 
PDF
Advancements and Future Trends in Advanced Quantum Algorithms A Prompt Scienc...
ijtsrd
 
PDF
A Study on Seismic Analysis of High Rise Building with Mass Irregularities, T...
ijtsrd
 
PDF
Descriptive Study to Assess the Knowledge of B.Sc. Interns Regarding Biomedic...
ijtsrd
 
PDF
Performance of Grid Connected Solar PV Power Plant at Clear Sky Day
ijtsrd
 
PDF
Vitiligo Treated Homoeopathically A Case Report
ijtsrd
 
PDF
Vitiligo Treated Homoeopathically A Case Report
ijtsrd
 
PDF
Uterine Fibroids Homoeopathic Perspectives
ijtsrd
 
A Study of School Dropout in Rural Districts of Darjeeling and Its Causes
ijtsrd
 
Pre extension Demonstration and Evaluation of Soybean Technologies in Fedis D...
ijtsrd
 
Pre extension Demonstration and Evaluation of Potato Technologies in Selected...
ijtsrd
 
Pre extension Demonstration and Evaluation of Animal Drawn Potato Digger in S...
ijtsrd
 
Pre extension Demonstration and Evaluation of Drought Tolerant and Early Matu...
ijtsrd
 
Pre extension Demonstration and Evaluation of Double Cropping Practice Legume...
ijtsrd
 
Pre extension Demonstration and Evaluation of Common Bean Technology in Low L...
ijtsrd
 
Enhancing Image Quality in Compression and Fading Channels A Wavelet Based Ap...
ijtsrd
 
Manpower Training and Employee Performance in Mellienium Ltdawka, Anambra State
ijtsrd
 
A Statistical Analysis on the Growth Rate of Selected Sectors of Nigerian Eco...
ijtsrd
 
Automatic Accident Detection and Emergency Alert System using IoT
ijtsrd
 
Corporate Social Responsibility Dimensions and Corporate Image of Selected Up...
ijtsrd
 
The Role of Media in Tribal Health and Educational Progress of Odisha
ijtsrd
 
Advancements and Future Trends in Advanced Quantum Algorithms A Prompt Scienc...
ijtsrd
 
A Study on Seismic Analysis of High Rise Building with Mass Irregularities, T...
ijtsrd
 
Descriptive Study to Assess the Knowledge of B.Sc. Interns Regarding Biomedic...
ijtsrd
 
Performance of Grid Connected Solar PV Power Plant at Clear Sky Day
ijtsrd
 
Vitiligo Treated Homoeopathically A Case Report
ijtsrd
 
Vitiligo Treated Homoeopathically A Case Report
ijtsrd
 
Uterine Fibroids Homoeopathic Perspectives
ijtsrd
 
Ad

Recently uploaded (20)

PPTX
Modern analytical techniques used to characterize organic compounds. Birbhum ...
AyanHossain
 
PPTX
Folding Off Hours in Gantt View in Odoo 18.2
Celine George
 
PDF
IMP NAAC REFORMS 2024 - 10 Attributes.pdf
BHARTIWADEKAR
 
PPTX
Accounting Skills Paper-I, Preparation of Vouchers
Dr. Sushil Bansode
 
PDF
Ziehl-Neelsen Stain: Principle, Procedu.
PRASHANT YADAV
 
PPSX
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
PDF
FULL DOCUMENT: Read the full Deloitte and Touche audit report on the National...
Kweku Zurek
 
PPTX
Maternal and Child Tracking system & RCH portal
Ms Usha Vadhel
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
PPTX
SCHOOL-BASED SEXUAL HARASSMENT PREVENTION AND RESPONSE WORKSHOP
komlalokoe
 
PPTX
LEGAL ASPECTS OF PSYCHIATRUC NURSING.pptx
PoojaSen20
 
PPTX
Explorando Recursos do Summer '25: Dicas Essenciais - 02
Mauricio Alexandre Silva
 
PPTX
ANORECTAL MALFORMATIONS: NURSING MANAGEMENT.pptx
PRADEEP ABOTHU
 
PPTX
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PPTX
Presentation: Climate Citizenship Digital Education
Karl Donert
 
PPTX
How to Configure Prepayments in Odoo 18 Sales
Celine George
 
PDF
IMP NAAC-Reforms-Stakeholder-Consultation-Presentation-on-Draft-Metrics-Unive...
BHARTIWADEKAR
 
PPTX
Mrs Mhondiwa Introduction to Algebra class
sabinaschimanga
 
PPTX
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
PPTX
SAMPLING: DEFINITION,PROCESS,TYPES,SAMPLE SIZE, SAMPLING ERROR.pptx
PRADEEP ABOTHU
 
Modern analytical techniques used to characterize organic compounds. Birbhum ...
AyanHossain
 
Folding Off Hours in Gantt View in Odoo 18.2
Celine George
 
IMP NAAC REFORMS 2024 - 10 Attributes.pdf
BHARTIWADEKAR
 
Accounting Skills Paper-I, Preparation of Vouchers
Dr. Sushil Bansode
 
Ziehl-Neelsen Stain: Principle, Procedu.
PRASHANT YADAV
 
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
FULL DOCUMENT: Read the full Deloitte and Touche audit report on the National...
Kweku Zurek
 
Maternal and Child Tracking system & RCH portal
Ms Usha Vadhel
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
SCHOOL-BASED SEXUAL HARASSMENT PREVENTION AND RESPONSE WORKSHOP
komlalokoe
 
LEGAL ASPECTS OF PSYCHIATRUC NURSING.pptx
PoojaSen20
 
Explorando Recursos do Summer '25: Dicas Essenciais - 02
Mauricio Alexandre Silva
 
ANORECTAL MALFORMATIONS: NURSING MANAGEMENT.pptx
PRADEEP ABOTHU
 
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
Presentation: Climate Citizenship Digital Education
Karl Donert
 
How to Configure Prepayments in Odoo 18 Sales
Celine George
 
IMP NAAC-Reforms-Stakeholder-Consultation-Presentation-on-Draft-Metrics-Unive...
BHARTIWADEKAR
 
Mrs Mhondiwa Introduction to Algebra class
sabinaschimanga
 
Optimizing Cancer Screening With MCED Technologies: From Science to Practical...
i3 Health
 
SAMPLING: DEFINITION,PROCESS,TYPES,SAMPLE SIZE, SAMPLING ERROR.pptx
PRADEEP ABOTHU
 

Accident Detection System using Arduino Uno

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2090 Accident Detection System using Arduino Uno Yu Yu Mon Win, Moe Myint Aung, Thin Thin Lecturer, Department of Electronic Engineering, Technological University, Magway, Myanmar How to cite this paper: Yu Yu Mon Win | Moe Myint Aung | Thin Thin "Accident Detection System using Arduino Uno" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019, pp.2090-2093, https://doi.org/10.31142/ijtsrd27840 Copyright © 2019 by author(s) and International Journal ofTrend inScientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT In highly populated countries, people lose their lives because of accidents and poor emergency facilities every day. These lives could have been saved if medical facilities are provided at the right time. This thesis implies a system which is a solution to this drawback, when a vehicle meets with an accident immediately, accelerometer module detects the signal, and it is sent to the Arduino microcontroller programmed by C programming language. Arduino sends an alert message through the GSM module including the location to the police station or a rescue team. So the police can immediately trace the location through the GPS modem after receiving the information. LCD is used to display location message from GPS module. The system is simulated and practically designed by the use of required hardware components and the results are satisfied with the expectation. KEYWORDS: Arduino, LCD, GPS, GSM, C Programming I. INTRODUCTION Nowadays, as the population of the world is increasing rapidly, and looking for someone or something are becoming more difficult. On the otherhand,thehigh demand of vehicles has also increased the traffic hazards and the road accidents. Life of the people is under this high risk. Road accidents constitute the major part of the accident deaths all over the world. The main cause of the accident death is "delay in rescue". The problem is difficult to know that an accident has occurred and to locate the position where it has happened. An automatic accident detection system for vehicle is introduced in this paper. This system can detect accidents in significantly less time in which a vehicle accident had occurred. And this system will send an accident alert message to the proposed mobile number (rescue team, family members, and etc…..), who will help in saving the valuable lives. There is an accelerometer module which detects unexpected angles change that can regarded as an accident. The message is sent through the GSM module and the location of the accident is detected with the help of GPS module. This constructed device provides the optimum solution to poor emergency facilities provided to the roads accidents to the road accidents in the most feasible way. II. System Block Diagram The block diagram of accident detection system is shown in fig.1 below. The Accelerometer ADXL335 sensor is used to measure the accidental vibration of vehicle. The Global Positioning System GPS module is used todetectthelocation of vehicle. The vibration and loacation data from these sensor are sent to Arduino UNO Microcontroller. The GSM SIM900A module is used to send alert message to the predefined mobile phone. The LCD is also connected to Arduino for displaying the locationwherethevehiclearrives to the Driver. Fig.1: System Block Diagram of Accident Detection System using Arduino Microcontroller III. Required Hardware Components The hardware components used in this design are listed as follow:  Arduino Uno  GPS module (Global Positioning System )  16 x2 LCD (Liquid Crystal Display )  GSM Sim900 Module ( Global System for Mobile Communication)  SIM card(Subscriber Identification Module)  Accelerometer ADXL 335 IJTSRD27840
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2091 They are described in Figure 2. Fig2. Collected Devices before Installation A. Overview of the System Fig 3 Overall Circuit of the System The pin assignment for the complete circuit is shown in table. Table 1 Pin Assignments Arduino Pins Pins of Components A3 Pin “X” of ADXL 335 A4 Pin “Y” of ADXL335 A5 Pin “Z” of ADXL335 D2 Tx Pin of GSM Module D3 Rx Pin Of GSM Module D10 Tx Pin of GPS Module D4 RS Pin of LCD D5 EN Pin of LCD D6 D4 Pin of LCD D7 D5 Pin of LCD D8 D6 Pin of LCD D9 D7 Pin of LCD
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2092 B. Flowchart of the System Start NO YES NO NO Device Switch on (GPS, GSM,LCD,ACCELEROMETER) Accelerometer sense X,Y,Z direction Exceed the assigned value? Accelerometer Ready Finding Module GPS Initializing No GPS Range Module Connected ? Finding Network Network Found? Get GPS Data Show Longitude and Latitude on LCD GPS Range Found GPS is Ready GPS is Ready YES YES GSM is Ready Send the Vibration values to MPU Send SMS via GSM module to the user Show Longitude and Latitude on User’s Mobile End Fig 4 System Flowchart C. Operation of The System In this design, Arduino is used for controlling the whole process with a GPS receiver and GSMmodule.GPSreceiveris used for detecting the coordinate of the vehicle,GSM module is used for sending the alert SMS with the coordinates. Accelerometer namely ADXL 335 is used for detecting accident or sudden change in any axis. An LCD 16x2 is also used for displaying status of the system. After the code is being uploaded to the Arduino, the system is ready to start. Now, there is unexpected vibration or the axis value of accelerometer is changed,the Arduino inform the accident detection to the GSM module. The data from GPS module is read by Arduino and the coordinate is get by extracting $GPMRC String. The location is continuously displays on LCD. But The GSM only sends SMS to the predefined number such as the police, ambulance, or family member with the location coordinates of accident place when the unexpected vibration occurs . The GSM module can communicate with the network by using AT commands.The mainrequirements for this circuit are initializations of GSM and GPS module. When they are correctly initialized, the system can operate to get desired results. IV. Tests and Results There are four individual tests before connecting theoverall circuit design. They are:  Reading data from ADXL335  Location data Reading from GPS Module  Sending SMS message by GSM SIM900A Module  Display on LCD A. Reading Analog Data From ADXL335 The Arduino read data from ADXL335 accelerometer by using the code shown in Figure 5. Fig5. Acceleration Test and Simulation Result B. Location Data Reading from GPS Module Fig6. GPS Test using Arduino The following command is used to get GPS data. While (gps.avaiable()>0) {byte gpsData=gps.read(); Serial.write (gpsData=gps.read());
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD27840 | Volume – 3 | Issue – 5 | July - August 2019 Page 2093 The location can be get from above $GPRMC String. This String means  $ represents "NMEA Data"  GP represents "GPS position"  RMC represents "Recommended Minimum sentence C"  022527.00 represents "HHMMSS.SS" (Hours, Minutes, Second)  A represents "Status // A=active"  2414.85025 represents "DDMM.MMMMM" ( latitude Degree, Minutes)  N represents "Direction N=North, S= South"  09714.28923 represents " DDDMM.MMMMM" ( Longitude Degree, Minutes)  E represents "Direction E= East, W=West". C. Sending SMS message by GSM SIM900A Module By using the AT commands describedinTable2GSMmodule is tested. Table2. AT Commands Commands Description ATA Answer Command ATD Dial Command AT+CMGS Send SMS message AT+CMGF Select SMS Message format AT+CNMI New SMS Message indication AT+CPIN Check Pin Figure 7. GSM Test D. Displaying on LCD Interfacing between LCD and Arduino is also tested.The16x 2 LCD display is command by four bit mode. Figure8. View of LCD Test V. Final Installation and Tests Since the individual tests are satisfied, then all devices are carefully connected and upload the complete code on Arduino. The maximum limit acceleration is predefined for accident detection. Whenaccidentis detected,the messageis sent as shown in Figure. VI. Conclusion and Discussion Nowadays, to provide a suitable safety of road accident preventing and detection system is becoming one of the most important things for the future generation. There is an increasing the death of peoplebecauseofroadaccidents. The demand for this process is to save life just on time after the accident has occurred. There are so many ways to know the location after the accident has occurred. This GPS and GSM based automatic accident detection system is also one of the less delay time and the most effectivesystemforthis present days. REFERENCES [1] Araya D.S and Athulya C.K Accident Alert and Tracking Using Arduino, Dept. of Electrical and Electronics Engineering, Mar Baselios Institute of Technology and Science, Nellimattom, Kerala, India, (2018). [2] Waleed Mohy Eldeen Ibrahem: Accident Detectionand Reporting, System using GPS and GSM Module, Almughtaribeen University College of Engineering, Department of Communication Fifth Year Bachelors, (2017). [3] Jonathan Vail: Global Positioning System, U.S Enviromental Protection Angency Science and Ecosystem Support Division Athens, Georgia, (2015). [4] Kommineni Rakesh: Vehicle Tracking and Accident Alert System, National Institute of Technology Rourkela, (2014). [5] Automatic Traffic Accident Detection and AlertSystem International Journal Technology Exploration an d Learning (IJTEL), Volume 1, Issue 1, (August 2012).