SlideShare a Scribd company logo
A
Project Phase II presentation
Development of Prototype of Black Box
for Passenger Cars
By
Under Guidance
Prof. S. S. Gawade
Name of Student URN No.
Vivek Maruti Patil [URN NO. 18161002]
Sohan Chintaman Mahajan [URN NO. 18161029]
Rahul Mahadev Kadam [URN NO. 18161030]
Shubham Uttam More [URN NO. 18161032]
Pranali Sanjay Deshmukh [URN NO. 19162015]
ANNASAHEB DANGE COLLEGE OF ENGINEERING & TECHNOLOGY, ASHTA
Department of Automobile Engineering
1. Introduction
2. Literature review
3. Gaps in literature review
4. Problem Statement
5. Objectives
6. Methodology
7. Phases of work on project
8. Design
9. Analysis
10. Expenditure
11. Model video
12. Conclusion
13. Reference
• The Black Box concept is derived from the aviation industry.
• It is an electronic recording device placed in an aircraft for the purpose
of facilitating the investigation of aviation accidents and incidents.
• In our project we attempt to build similar device for our cars, not only
this device will help us in post-crash analysis but also it will help us in
quicker emergency rescue operation.
S.N
.
Name of author Title of paper Findings
1 Sharvin Pingulkar,
Haroondeep Singh
Sandhu, Jayant.
R.
Mahajan [2016]
Surveillance and Black
Box for Car.
The proposed framework uses
GPS and GSM module to
finds the present area of vehicle
where mishap has
happened .
2 P. Ajay Kumar
Reddy,
P.Dileep Kumar, K.
Bhaskar reddy,
E.Venkataramana
[2012]
Vehicle Black Box
System.
This paper has presented a new
vision for the vehicles industry,
which is the Black Box system
used for vehicles. A full and
detailed description was made
for every part of this system.
3 Abdallah Kassem,
Rabih Jabr, Ghady
Salamouni [2008]
Design and Fabrication
of Black Box
for Automobiles.
The Black Box system built can
be implemented in any vehicle.
As
soon as the driver runs the
motor, this system will begin
saving the events of the
corresponding vehicle.
S.N. Name of author Title of paper Findings
4 Abdallah Kassem
Notre Dame
University
[2019]
Vehicle Black Box
System
The main purpose of this
paper is to develop a
prototype of the vehicle
black box system
5 Dr.Rajeshwari Devi
D.V,Krishnaveni
M.S,Mandara V ,
M.D Shobitha,
Anvitha Muthamma
K.C Department of
ECE, Mysuru.[2020]
Black Box for
Automobiles
The proposed system
can assist transportation
businesses in monitoring
and tracking their
employees' driving
performance.
6 Dimple R,
B S Nanda;
P. E. S. College of
Engineering,
Mandya,
Karnataka.[2018]
Design and
implementation of smart
black box system for
gathering the safety
information in vehicles
The proposed system
makes good use of GPS
and Android applications
by providing safe and
secure traveling to the
travelers.
Problem Statement :
Whenever an accident is being met, the people
nearby call the ambulance. The problem associated
with this is that the victims depend on the mercy of
nearby people. There are chances where no people
nearby the accident spot or people who are around
neglects the accident. This is the flaw in the manual
system.
The objectives of the project work are stated as follows:
 To study existing black box design and configuration.
 To design prototype of proposed system of Black box for road vehicles.
 To develop a system to get maintenance alert.
 To get regular vehicle data parameters such as engine temperature, coolant level and
oil level.
 To develop a system that records the front desk videos for post crash analysis.
 To conduct testing of elements of developed prototype model followed by validation
of the proposed approach.
Problem
Identification
Identifying different
solutions
Relevant Literature
Survey
Detailed Study of
black box circuit
Module
Procurement
Building Proto Type Testing
Conclusion
Project Presentation
Preparation & Report
Writing
Phase I: Literature Survey and theoretical calculations
In this phase an extensive literature survey will be carried out. It involves collection of
literature from various available resources. The required theoretical background needed to understand
working of black box and rescue system for road vehicle .
Phase II: Emergency Rescue System Design
In this phase the design of components of emergency rescue system has to be performed and
other system that involves alert of vehicle accident.
Phase III: Development of Actual prototype.
In this phase the circuit is designed for black box systems and emergency rescue system; and
the program is written and uploaded to Arduino according to application.
Phase IV: Final tests and performance analysis
Finally the system is thoroughly checked and performance tests are run on systems in this
phase. Analysis and result is been worked upon in this stage.
Phases of work:
1) Microcontroller- Arduino Nano
2) GSM Module
3) GPS Module
4) Wi-Fi Camera
5) Temperature Sensor
6) LDR- LASER Sensor
7) Ultrasonic Sensor
Black Box Consists Of :
 Emergency rescue system.
 Front desk video recording system.
 Regular maintenance parameter check system
Emergency rescue system.
The Emergency rescue system consist of GSM module, GPS module and
Microcontroller.
Whenever vehicle get met with an accident, the system get detects the accident with
the help of Sensors.
We get the emergency massage as soon as the system get triggered.
Flow Chart for Emergency rescue system.
The ESP8266 module enables
microcontrollers to connect to 2.4
GHz Wi-Fi, using IEEE 802.11 bgn.
It can be used with ESP-AT
firmware to provide Wi-Fi
connectivity to external host MCUs,
or it can be used as a self-sufficient
MCU by running an RTOS-based
SDK.
#include <ESP8266WiFi.h>;
#include <WiFiClient.h>;
#include <ThingSpeak.h>;
const char* ssid = "FD-51"; // Your Network SSID
const char* password = "123456789"; // Your Network Password
int val;
int pin = A0; //LM53 Pin Connected at A0 Pin
const int trigPin = D5;
const int echoPin = D6;
long duration;
int distance;
int pushButton =D2;
WiFiClient client;
unsigned long myChannelNumber = 1679263; //Your Channel Number (Without Brackets)
const char * myWriteAPIKey = "2C3Q29VDROQSGIJT"; //Your Write API Key
void setup()
{
Serial.begin(9600);
delay(10);
// Connect to WiFi network
WiFi.begin(ssid ,password );
ThingSpeak.begin(client);
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
Serial.begin(9600); // Starts the serial communication
Serial.begin(9600); //initialize serial comm. at 9600 bits per second
pinMode(pushButton, INPUT); //make the push button's pin an input
}
void loop()
{
val = analogRead(pin)*0.322265; // Read Analog values and Store in val
variable
Serial.print("Temperature: ");
Serial.print(val); // Print on Serial Monitor
Serial.println("*C");
delay(1000);
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance= duration*0.034/2;
// Prints the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.println(distance);
delay(2000);
int buttonState = digitalRead(pushButton); //read the input pin
Serial.println(buttonState); //print out the state of the button
delay(1); //delay in between reads for stability
ThingSpeak.writeField(myChannelNumber, 1,val,myWriteAPIKey );
//Update
ThingSpeak.writeField(myChannelNumber, 2,distance,myWriteAPIKey );
delay(100);
ThingSpeak.writeField(myChannelNumber, 3,buttonState,myWriteAPIKey
);
delay(100);
}
Arduino Program for Emergency Rescue System
GSM - SIM800A
The SIM800A modem has a SIM800A
GSM chip and RS232 interface while
enables easy connection with the computer
or laptop using the USB to the Serial
connector or to the micro-controller using
the RS232 to TTL converter. Once you
connect the SIM800A modem using the
USB to RS232 connector, Once a serial
connection is open through the computer
or your micro-controller you can start
sending the AT commands. When you
send AT commands for example “ATr” you
should receive back a reply from the
SIM800A modem saying “OK”
GPS Module
Global Positioning System (GPS)
satellites broadcast signals from space
that GPS receivers, use to provide
threedimensional location (latitude,
longitude, and altitude) plus precise time.
GPS receivers provides reliable
positioning, navigation, and timing
services to worldwide users on a
continuous basis in all weather, day and
night, anywhere on or near the Earth
Results of Emergency Rescue System:
The ESP32-CAM is a small size, low
power consumption camera module based
on ESP32. It comes with an OV2640
camera and provides onboard TF card
slot.The ESP32-CAM can be widely used
in intelligent IoT applications such as
wireless video monitoring, WiFi image
upload, QR identification, and so on.
Front desk video recording system.
Camera IP ADDRESS http://192.168.27.106
FEATURES OF LM35 ANALOG
TEMPERATURE SENSOR:
Provides analog output directly readable in
degrees Celsius
Output voltage corresponds to 10.0mV/°C
-55 to 150°C measurement range with
±0.5°C accuracy°
5V compatible. 3.3V uC compatible if the
sensor is run off separate 4 to 20V supply.
If you have a uC like an Arduino and you
want to measure temperature, the LM35 is
one of the more popular temperature
measurement ICs to use.
Tempreture sensor testing:
LDR (Light Dependent Resistor) as the
name states it is a special type of resistor
that works on the photoconductivity
principle means that resistance changes
according to the intensity of light. Its
resistance decreases with an increase in
the intensity of light. It is used to check
quality of oil.
Servicing alert testing :
Ultrasonic Sensor
An ultrasonic sensor is an electronic
device that measures the distance of a
target object by emitting ultrasonic
sound waves, and converts the
reflected sound into an electrical
signal. In our system this sensor
provides the exact oil level in the
engine.
Component Price (Rs.)
Arduino nano 1500
GSM Module 2500
GPS Module 750
WIFI Camera 500
Temperature Sensor 250
LDR - LASER 250
Ultrasonic Sensor 300
Casing 1000
Future Scope:
• With the further advancement as soon as the vehicle
meet the accident the message should be sent to
nearest police station and hospital.
• This system can be implemented by insurance
companies to do post crash analysis.
Conclusion:
The proposed system makes good use of GPS and Android
applications by providing safe and secure traveling to the
travelers. This is done using wrong path alert mechanism. It
helps to find the current location of the vehicle. Traveler’s
safety mechanism is also provided using temperature,
ultrasonic, smoke and accelerometer sensor. As per traveler’s
safety concern, the proposed system also gives alert massage
to authorized mobile so that authorized person also knows
about their traveler’s safety.
1) Surveillance and Black Box for Car, Sharvin Pingulkar, Haroondeep Singh Sandhu,
Jayant. R.Mahajan [2016]
2) Vehicle Black Box System, P. Ajay Kumar Reddy,
P.Dileep Kumar, K. Bhaskar reddy, E.Venkataramana [2012]
3) Design and Fabrication of Black Box for Automobiles. Abdallah Kassem,Rabih
Jabr, Ghady Salamouni [2008]
4) Vehicle Black Box System, Abdallah Kassem Notre Dame
University [2019]
5) Black Box for Automobiles, Dr.Rajeshwari Devi D.V,Krishnaveni M.S,Mandara V ,
M.D Shobitha, Anvitha Muthamma K.C Department of ECE, Mysuru.[2020]
6) Design and implementation of smart black box system for gathering the safety
information in vehicles, Dimple R,
B S Nanda;P. E. S. College of Engineering, Mandya, Karnataka.[2018]

More Related Content

Similar to blackbox01 (1).pptx

IRJET- Automatic Vehicle Accident Detection and Rescue System
IRJET- Automatic Vehicle Accident Detection and Rescue SystemIRJET- Automatic Vehicle Accident Detection and Rescue System
IRJET- Automatic Vehicle Accident Detection and Rescue System
IRJET Journal
 
Vehicle tracking and locking system based on GSM and GPS
Vehicle tracking and locking system based on GSM and GPSVehicle tracking and locking system based on GSM and GPS
Vehicle tracking and locking system based on GSM and GPS
Ashutha K
 
AI&AS PPT.pptx
AI&AS PPT.pptxAI&AS PPT.pptx
AI&AS PPT.pptx
Chellavenkannababu
 
IRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple SensorsIRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET Journal
 
Anti-Theft Protection of Vehicle by GSM & GPS with Fingerprint Verification
Anti-Theft Protection of Vehicle by GSM & GPS with Fingerprint VerificationAnti-Theft Protection of Vehicle by GSM & GPS with Fingerprint Verification
Anti-Theft Protection of Vehicle by GSM & GPS with Fingerprint Verification
IJAEMSJORNAL
 
Vehicle Theft Control and Accident Location Intimation Through SMS
Vehicle Theft Control and Accident Location Intimation Through SMSVehicle Theft Control and Accident Location Intimation Through SMS
Vehicle Theft Control and Accident Location Intimation Through SMS
IJMTST Journal
 
Vehicle accident detection system (VAD)
Vehicle accident detection system (VAD)Vehicle accident detection system (VAD)
Vehicle accident detection system (VAD)
Study Hub
 
ALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCE
ALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCEALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCE
ALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCE
IRJET Journal
 
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET Journal
 
IRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control SystemIRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control System
IRJET Journal
 
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
IRJET Journal
 
IRJET- Women Security System using GSM and GPS
IRJET-  	  Women Security System using GSM and GPSIRJET-  	  Women Security System using GSM and GPS
IRJET- Women Security System using GSM and GPS
IRJET Journal
 
B1803050722
B1803050722B1803050722
B1803050722
IOSR Journals
 
IRJET- Dynamic Status Tracking & Security System
IRJET- Dynamic Status Tracking & Security SystemIRJET- Dynamic Status Tracking & Security System
IRJET- Dynamic Status Tracking & Security System
IRJET Journal
 
External ppt
External pptExternal ppt
External ppt
darshangowda679
 
1. 10077 12326-1-pb
1. 10077 12326-1-pb1. 10077 12326-1-pb
1. 10077 12326-1-pb
IAESIJEECS
 
IRJET - Accident Monitoring and Rescue System
IRJET - Accident Monitoring and Rescue SystemIRJET - Accident Monitoring and Rescue System
IRJET - Accident Monitoring and Rescue System
IRJET Journal
 
IRJET- Automotive Collision Avoidance System
IRJET-  	  Automotive Collision Avoidance SystemIRJET-  	  Automotive Collision Avoidance System
IRJET- Automotive Collision Avoidance System
IRJET Journal
 
CAR BLACK BOX SYSTEM
CAR BLACK BOX SYSTEMCAR BLACK BOX SYSTEM
CAR BLACK BOX SYSTEM
IRJET Journal
 
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCUIRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
IRJET Journal
 

Similar to blackbox01 (1).pptx (20)

IRJET- Automatic Vehicle Accident Detection and Rescue System
IRJET- Automatic Vehicle Accident Detection and Rescue SystemIRJET- Automatic Vehicle Accident Detection and Rescue System
IRJET- Automatic Vehicle Accident Detection and Rescue System
 
Vehicle tracking and locking system based on GSM and GPS
Vehicle tracking and locking system based on GSM and GPSVehicle tracking and locking system based on GSM and GPS
Vehicle tracking and locking system based on GSM and GPS
 
AI&AS PPT.pptx
AI&AS PPT.pptxAI&AS PPT.pptx
AI&AS PPT.pptx
 
IRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple SensorsIRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
IRJET- IoT based Vehicle Accident Prevention using Multiple Sensors
 
Anti-Theft Protection of Vehicle by GSM & GPS with Fingerprint Verification
Anti-Theft Protection of Vehicle by GSM & GPS with Fingerprint VerificationAnti-Theft Protection of Vehicle by GSM & GPS with Fingerprint Verification
Anti-Theft Protection of Vehicle by GSM & GPS with Fingerprint Verification
 
Vehicle Theft Control and Accident Location Intimation Through SMS
Vehicle Theft Control and Accident Location Intimation Through SMSVehicle Theft Control and Accident Location Intimation Through SMS
Vehicle Theft Control and Accident Location Intimation Through SMS
 
Vehicle accident detection system (VAD)
Vehicle accident detection system (VAD)Vehicle accident detection system (VAD)
Vehicle accident detection system (VAD)
 
ALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCE
ALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCEALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCE
ALPHA-ACCIDENT LOCATION PATIENT HEALTH ASSISTENCE
 
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
 
IRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control SystemIRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control System
 
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
IRJET-Automatic Vehicle Accident Detection and Messaging System using GSM and...
 
IRJET- Women Security System using GSM and GPS
IRJET-  	  Women Security System using GSM and GPSIRJET-  	  Women Security System using GSM and GPS
IRJET- Women Security System using GSM and GPS
 
B1803050722
B1803050722B1803050722
B1803050722
 
IRJET- Dynamic Status Tracking & Security System
IRJET- Dynamic Status Tracking & Security SystemIRJET- Dynamic Status Tracking & Security System
IRJET- Dynamic Status Tracking & Security System
 
External ppt
External pptExternal ppt
External ppt
 
1. 10077 12326-1-pb
1. 10077 12326-1-pb1. 10077 12326-1-pb
1. 10077 12326-1-pb
 
IRJET - Accident Monitoring and Rescue System
IRJET - Accident Monitoring and Rescue SystemIRJET - Accident Monitoring and Rescue System
IRJET - Accident Monitoring and Rescue System
 
IRJET- Automotive Collision Avoidance System
IRJET-  	  Automotive Collision Avoidance SystemIRJET-  	  Automotive Collision Avoidance System
IRJET- Automotive Collision Avoidance System
 
CAR BLACK BOX SYSTEM
CAR BLACK BOX SYSTEMCAR BLACK BOX SYSTEM
CAR BLACK BOX SYSTEM
 
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCUIRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
 

Recently uploaded

PRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATION
PRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATIONPRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATION
PRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATION
ChetanK57
 
Comparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebratesComparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebrates
sachin783648
 
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Ana Luísa Pinho
 
general properties of oerganologametal.ppt
general properties of oerganologametal.pptgeneral properties of oerganologametal.ppt
general properties of oerganologametal.ppt
IqrimaNabilatulhusni
 
Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.
Nistarini College, Purulia (W.B) India
 
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdfSCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SELF-EXPLANATORY
 
Cancer cell metabolism: special Reference to Lactate Pathway
Cancer cell metabolism: special Reference to Lactate PathwayCancer cell metabolism: special Reference to Lactate Pathway
Cancer cell metabolism: special Reference to Lactate Pathway
AADYARAJPANDEY1
 
Richard's entangled aventures in wonderland
Richard's entangled aventures in wonderlandRichard's entangled aventures in wonderland
Richard's entangled aventures in wonderland
Richard Gill
 
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
University of Maribor
 
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
Health Advances
 
Hemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptxHemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptx
muralinath2
 
Multi-source connectivity as the driver of solar wind variability in the heli...
Multi-source connectivity as the driver of solar wind variability in the heli...Multi-source connectivity as the driver of solar wind variability in the heli...
Multi-source connectivity as the driver of solar wind variability in the heli...
Sérgio Sacani
 
Richard's aventures in two entangled wonderlands
Richard's aventures in two entangled wonderlandsRichard's aventures in two entangled wonderlands
Richard's aventures in two entangled wonderlands
Richard Gill
 
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptxBody fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
muralinath2
 
Seminar of U.V. Spectroscopy by SAMIR PANDA
 Seminar of U.V. Spectroscopy by SAMIR PANDA Seminar of U.V. Spectroscopy by SAMIR PANDA
Seminar of U.V. Spectroscopy by SAMIR PANDA
SAMIR PANDA
 
platelets_clotting_biogenesis.clot retractionpptx
platelets_clotting_biogenesis.clot retractionpptxplatelets_clotting_biogenesis.clot retractionpptx
platelets_clotting_biogenesis.clot retractionpptx
muralinath2
 
NuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final versionNuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final version
pablovgd
 
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
Sérgio Sacani
 
Citrus Greening Disease and its Management
Citrus Greening Disease and its ManagementCitrus Greening Disease and its Management
Citrus Greening Disease and its Management
subedisuryaofficial
 
Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...
Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...
Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...
muralinath2
 

Recently uploaded (20)

PRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATION
PRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATIONPRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATION
PRESENTATION ABOUT PRINCIPLE OF COSMATIC EVALUATION
 
Comparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebratesComparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebrates
 
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
Deep Behavioral Phenotyping in Systems Neuroscience for Functional Atlasing a...
 
general properties of oerganologametal.ppt
general properties of oerganologametal.pptgeneral properties of oerganologametal.ppt
general properties of oerganologametal.ppt
 
Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.Nucleic Acid-its structural and functional complexity.
Nucleic Acid-its structural and functional complexity.
 
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdfSCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
 
Cancer cell metabolism: special Reference to Lactate Pathway
Cancer cell metabolism: special Reference to Lactate PathwayCancer cell metabolism: special Reference to Lactate Pathway
Cancer cell metabolism: special Reference to Lactate Pathway
 
Richard's entangled aventures in wonderland
Richard's entangled aventures in wonderlandRichard's entangled aventures in wonderland
Richard's entangled aventures in wonderland
 
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
Comparing Evolved Extractive Text Summary Scores of Bidirectional Encoder Rep...
 
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
 
Hemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptxHemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptx
 
Multi-source connectivity as the driver of solar wind variability in the heli...
Multi-source connectivity as the driver of solar wind variability in the heli...Multi-source connectivity as the driver of solar wind variability in the heli...
Multi-source connectivity as the driver of solar wind variability in the heli...
 
Richard's aventures in two entangled wonderlands
Richard's aventures in two entangled wonderlandsRichard's aventures in two entangled wonderlands
Richard's aventures in two entangled wonderlands
 
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptxBody fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
 
Seminar of U.V. Spectroscopy by SAMIR PANDA
 Seminar of U.V. Spectroscopy by SAMIR PANDA Seminar of U.V. Spectroscopy by SAMIR PANDA
Seminar of U.V. Spectroscopy by SAMIR PANDA
 
platelets_clotting_biogenesis.clot retractionpptx
platelets_clotting_biogenesis.clot retractionpptxplatelets_clotting_biogenesis.clot retractionpptx
platelets_clotting_biogenesis.clot retractionpptx
 
NuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final versionNuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final version
 
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
 
Citrus Greening Disease and its Management
Citrus Greening Disease and its ManagementCitrus Greening Disease and its Management
Citrus Greening Disease and its Management
 
Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...
Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...
Circulatory system_ Laplace law. Ohms law.reynaults law,baro-chemo-receptors-...
 

blackbox01 (1).pptx

  • 1. A Project Phase II presentation Development of Prototype of Black Box for Passenger Cars By Under Guidance Prof. S. S. Gawade Name of Student URN No. Vivek Maruti Patil [URN NO. 18161002] Sohan Chintaman Mahajan [URN NO. 18161029] Rahul Mahadev Kadam [URN NO. 18161030] Shubham Uttam More [URN NO. 18161032] Pranali Sanjay Deshmukh [URN NO. 19162015] ANNASAHEB DANGE COLLEGE OF ENGINEERING & TECHNOLOGY, ASHTA Department of Automobile Engineering
  • 2. 1. Introduction 2. Literature review 3. Gaps in literature review 4. Problem Statement 5. Objectives 6. Methodology 7. Phases of work on project 8. Design 9. Analysis 10. Expenditure 11. Model video 12. Conclusion 13. Reference
  • 3. • The Black Box concept is derived from the aviation industry. • It is an electronic recording device placed in an aircraft for the purpose of facilitating the investigation of aviation accidents and incidents. • In our project we attempt to build similar device for our cars, not only this device will help us in post-crash analysis but also it will help us in quicker emergency rescue operation.
  • 4. S.N . Name of author Title of paper Findings 1 Sharvin Pingulkar, Haroondeep Singh Sandhu, Jayant. R. Mahajan [2016] Surveillance and Black Box for Car. The proposed framework uses GPS and GSM module to finds the present area of vehicle where mishap has happened . 2 P. Ajay Kumar Reddy, P.Dileep Kumar, K. Bhaskar reddy, E.Venkataramana [2012] Vehicle Black Box System. This paper has presented a new vision for the vehicles industry, which is the Black Box system used for vehicles. A full and detailed description was made for every part of this system. 3 Abdallah Kassem, Rabih Jabr, Ghady Salamouni [2008] Design and Fabrication of Black Box for Automobiles. The Black Box system built can be implemented in any vehicle. As soon as the driver runs the motor, this system will begin saving the events of the corresponding vehicle.
  • 5. S.N. Name of author Title of paper Findings 4 Abdallah Kassem Notre Dame University [2019] Vehicle Black Box System The main purpose of this paper is to develop a prototype of the vehicle black box system 5 Dr.Rajeshwari Devi D.V,Krishnaveni M.S,Mandara V , M.D Shobitha, Anvitha Muthamma K.C Department of ECE, Mysuru.[2020] Black Box for Automobiles The proposed system can assist transportation businesses in monitoring and tracking their employees' driving performance. 6 Dimple R, B S Nanda; P. E. S. College of Engineering, Mandya, Karnataka.[2018] Design and implementation of smart black box system for gathering the safety information in vehicles The proposed system makes good use of GPS and Android applications by providing safe and secure traveling to the travelers.
  • 6. Problem Statement : Whenever an accident is being met, the people nearby call the ambulance. The problem associated with this is that the victims depend on the mercy of nearby people. There are chances where no people nearby the accident spot or people who are around neglects the accident. This is the flaw in the manual system.
  • 7. The objectives of the project work are stated as follows:  To study existing black box design and configuration.  To design prototype of proposed system of Black box for road vehicles.  To develop a system to get maintenance alert.  To get regular vehicle data parameters such as engine temperature, coolant level and oil level.  To develop a system that records the front desk videos for post crash analysis.  To conduct testing of elements of developed prototype model followed by validation of the proposed approach.
  • 8. Problem Identification Identifying different solutions Relevant Literature Survey Detailed Study of black box circuit Module Procurement Building Proto Type Testing Conclusion Project Presentation Preparation & Report Writing
  • 9. Phase I: Literature Survey and theoretical calculations In this phase an extensive literature survey will be carried out. It involves collection of literature from various available resources. The required theoretical background needed to understand working of black box and rescue system for road vehicle . Phase II: Emergency Rescue System Design In this phase the design of components of emergency rescue system has to be performed and other system that involves alert of vehicle accident. Phase III: Development of Actual prototype. In this phase the circuit is designed for black box systems and emergency rescue system; and the program is written and uploaded to Arduino according to application. Phase IV: Final tests and performance analysis Finally the system is thoroughly checked and performance tests are run on systems in this phase. Analysis and result is been worked upon in this stage. Phases of work:
  • 10.
  • 11. 1) Microcontroller- Arduino Nano 2) GSM Module 3) GPS Module 4) Wi-Fi Camera 5) Temperature Sensor 6) LDR- LASER Sensor 7) Ultrasonic Sensor
  • 12. Black Box Consists Of :  Emergency rescue system.  Front desk video recording system.  Regular maintenance parameter check system
  • 13. Emergency rescue system. The Emergency rescue system consist of GSM module, GPS module and Microcontroller. Whenever vehicle get met with an accident, the system get detects the accident with the help of Sensors. We get the emergency massage as soon as the system get triggered.
  • 14. Flow Chart for Emergency rescue system.
  • 15. The ESP8266 module enables microcontrollers to connect to 2.4 GHz Wi-Fi, using IEEE 802.11 bgn. It can be used with ESP-AT firmware to provide Wi-Fi connectivity to external host MCUs, or it can be used as a self-sufficient MCU by running an RTOS-based SDK.
  • 16. #include <ESP8266WiFi.h>; #include <WiFiClient.h>; #include <ThingSpeak.h>; const char* ssid = "FD-51"; // Your Network SSID const char* password = "123456789"; // Your Network Password int val; int pin = A0; //LM53 Pin Connected at A0 Pin const int trigPin = D5; const int echoPin = D6; long duration; int distance; int pushButton =D2; WiFiClient client; unsigned long myChannelNumber = 1679263; //Your Channel Number (Without Brackets) const char * myWriteAPIKey = "2C3Q29VDROQSGIJT"; //Your Write API Key void setup() { Serial.begin(9600); delay(10); // Connect to WiFi network WiFi.begin(ssid ,password ); ThingSpeak.begin(client); pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output pinMode(echoPin, INPUT); // Sets the echoPin as an Input Serial.begin(9600); // Starts the serial communication Serial.begin(9600); //initialize serial comm. at 9600 bits per second pinMode(pushButton, INPUT); //make the push button's pin an input } void loop() { val = analogRead(pin)*0.322265; // Read Analog values and Store in val variable Serial.print("Temperature: "); Serial.print(val); // Print on Serial Monitor Serial.println("*C"); delay(1000); // Clears the trigPin digitalWrite(trigPin, LOW); delayMicroseconds(2); // Sets the trigPin on HIGH state for 10 micro seconds digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); // Reads the echoPin, returns the sound wave travel time in microseconds duration = pulseIn(echoPin, HIGH); // Calculating the distance distance= duration*0.034/2; // Prints the distance on the Serial Monitor Serial.print("Distance: "); Serial.println(distance); delay(2000); int buttonState = digitalRead(pushButton); //read the input pin Serial.println(buttonState); //print out the state of the button delay(1); //delay in between reads for stability ThingSpeak.writeField(myChannelNumber, 1,val,myWriteAPIKey ); //Update ThingSpeak.writeField(myChannelNumber, 2,distance,myWriteAPIKey ); delay(100); ThingSpeak.writeField(myChannelNumber, 3,buttonState,myWriteAPIKey ); delay(100); } Arduino Program for Emergency Rescue System
  • 17. GSM - SIM800A The SIM800A modem has a SIM800A GSM chip and RS232 interface while enables easy connection with the computer or laptop using the USB to the Serial connector or to the micro-controller using the RS232 to TTL converter. Once you connect the SIM800A modem using the USB to RS232 connector, Once a serial connection is open through the computer or your micro-controller you can start sending the AT commands. When you send AT commands for example “ATr” you should receive back a reply from the SIM800A modem saying “OK”
  • 18. GPS Module Global Positioning System (GPS) satellites broadcast signals from space that GPS receivers, use to provide threedimensional location (latitude, longitude, and altitude) plus precise time. GPS receivers provides reliable positioning, navigation, and timing services to worldwide users on a continuous basis in all weather, day and night, anywhere on or near the Earth
  • 19. Results of Emergency Rescue System:
  • 20. The ESP32-CAM is a small size, low power consumption camera module based on ESP32. It comes with an OV2640 camera and provides onboard TF card slot.The ESP32-CAM can be widely used in intelligent IoT applications such as wireless video monitoring, WiFi image upload, QR identification, and so on. Front desk video recording system. Camera IP ADDRESS http://192.168.27.106
  • 21. FEATURES OF LM35 ANALOG TEMPERATURE SENSOR: Provides analog output directly readable in degrees Celsius Output voltage corresponds to 10.0mV/°C -55 to 150°C measurement range with ±0.5°C accuracy° 5V compatible. 3.3V uC compatible if the sensor is run off separate 4 to 20V supply. If you have a uC like an Arduino and you want to measure temperature, the LM35 is one of the more popular temperature measurement ICs to use.
  • 23. LDR (Light Dependent Resistor) as the name states it is a special type of resistor that works on the photoconductivity principle means that resistance changes according to the intensity of light. Its resistance decreases with an increase in the intensity of light. It is used to check quality of oil.
  • 25. Ultrasonic Sensor An ultrasonic sensor is an electronic device that measures the distance of a target object by emitting ultrasonic sound waves, and converts the reflected sound into an electrical signal. In our system this sensor provides the exact oil level in the engine.
  • 26.
  • 27. Component Price (Rs.) Arduino nano 1500 GSM Module 2500 GPS Module 750 WIFI Camera 500 Temperature Sensor 250 LDR - LASER 250 Ultrasonic Sensor 300 Casing 1000
  • 28. Future Scope: • With the further advancement as soon as the vehicle meet the accident the message should be sent to nearest police station and hospital. • This system can be implemented by insurance companies to do post crash analysis.
  • 29. Conclusion: The proposed system makes good use of GPS and Android applications by providing safe and secure traveling to the travelers. This is done using wrong path alert mechanism. It helps to find the current location of the vehicle. Traveler’s safety mechanism is also provided using temperature, ultrasonic, smoke and accelerometer sensor. As per traveler’s safety concern, the proposed system also gives alert massage to authorized mobile so that authorized person also knows about their traveler’s safety.
  • 30. 1) Surveillance and Black Box for Car, Sharvin Pingulkar, Haroondeep Singh Sandhu, Jayant. R.Mahajan [2016] 2) Vehicle Black Box System, P. Ajay Kumar Reddy, P.Dileep Kumar, K. Bhaskar reddy, E.Venkataramana [2012] 3) Design and Fabrication of Black Box for Automobiles. Abdallah Kassem,Rabih Jabr, Ghady Salamouni [2008] 4) Vehicle Black Box System, Abdallah Kassem Notre Dame University [2019] 5) Black Box for Automobiles, Dr.Rajeshwari Devi D.V,Krishnaveni M.S,Mandara V , M.D Shobitha, Anvitha Muthamma K.C Department of ECE, Mysuru.[2020] 6) Design and implementation of smart black box system for gathering the safety information in vehicles, Dimple R, B S Nanda;P. E. S. College of Engineering, Mandya, Karnataka.[2018]