6.2.1 Mini Project Report Sample
6.2.1 Mini Project Report Sample
6.2.1 Mini Project Report Sample
A PROJECT REPORT
SUBMITTED BY
KAVIYA S 111621104074
MONIKA G 111621104090
HANISHA M 111621104084
HARINI SREE 111621104049
S
IN
APRIL 2023
1
TABLE OF CONTENTS
1. ABSTRACT 4
2. INTRODUCTION 6
3. WORKING PRINCIPLE 7
4. CIRCUIT DIAGRAM 8
5. EQUIPMENTS REQUIRED 9
6. PROGRAM 18
7. ADVANTAGES 21
8. LIMITATIONS 22
9. FUTURE DEVELOPMENTS 23
10. CONCLUSION 26
11. REFERENCE 27
2
1. ABSTRACT
3
caused by drunk driving. As the famous saying
goes, "Safety doesn't happen by accident." It is up
to all of us to take proactive measures to ensure the
safety of ourselves and others on the road.
4
2.INTRODUCTION
The alcohol detector and engine locking system is
designed to prevent drunk driving, which is a major
cause of accidents and fatalities on the road. It has
been implemented in various forms in different
countries, and in some places, it is mandatory for
certain drivers, such as those with prior DUI
convictions or commercial drivers. Drunk driving
is a serious problem in many countries around the
world. According to the National Highway Traffic
Safety Administration (NHTSA), in 2019, 10, 142
people died in alcohol-impaired crashes in the
United States alone. To address this issue, various
technologies have been developed to prevent drunk
driving, including the alcohol detector and engine
locking system. This report will discuss the
working principles, advantages, and limitations of
this technology.
5
2. WORKING PRINCIPLE
6
4.CIRCUIT DIAGRAM
7
5. EQUIPMENTS REQUIRED
1. ARDUINO UNO
8
3. MQ 3 SENSOR
9
3.BO MOTOR
10
4.RELAY
11
4.BC 547 TRANSISTOR
12
6. 9V BATTERY
13
7.LED
14
8. BUZZER
15
9. RESISTOR
16
6.PROGRAM
#define sensorDigital A0
#define Motor 7
#define buzzer 8
void setup()
{
pinMode(sensorDigital, INPUT);
pinMode(Motor, OUTPUT);
pinMode(buzzer, OUTPUT);
Serial.begin(9600);
}
void loop()
{
int t=digitalRead(Motor);
Serial.println(t);
int digital = analogRead(sensorDigital);
Serial.print("t");
Serial.print("Digital value :");
Serial.println(digital);
if (digital > 700) {
digitalWrite(Motor, LOW );
digitalWrite(buzzer, HIGH);
}
else
{
digitalWrite(Motor, HIGH);
digitalWrite(buzzer, LOW); }
17
OUTPUT WHEN ALCHOL IS
DETECTED
18
7.ADVANTAGES
The alcohol detector and engine locking system has
several advantages in preventing drunk driving.
First, it can accurately measure a driver's BAC
level and prevent them from operating the vehicle
if their level is above the legal limit. This reduces
the risk of accidents caused by impaired driving.
Second, the system can help to deter drunk driving
by providing a visual reminder of the consequences
of drinking and driving. Drivers are aware that they
will not be able to operate their vehicles if they
have consumed alcohol, which can discourage
them from drinking and driving.
Third, the alcohol detector and engine locking
system can be used as a probationary tool for
individuals who have been convicted of DUI
(Driving Under the Influence) or DWI (Driving
While Intoxicated). The system can be installed in
their vehicles as a condition of their probation,
which ensures that they do not violate the terms of
their probation by driving under the influence of
alcohol.
19
8. LIMITATIONS
20
9.FUTURE DEVELOPMENTS
The development of alcohol detectors and engine
locking systems is an ongoing process, and there
are several potential future developments that could
enhance their effectiveness and functionality. Here
are some of the possibilities:
21
Artificial intelligence (AI) integration: Future
systems may incorporate AI algorithms to analyze
data from multiple sources, including biometric
sensors, GPS, and other vehicle sensors, to better
detect impairment and prevent false positives.
22
10.CONCLUSION
23
11.REFERENCE
https://drive.google.com/drive/folders/1FDvh
YRaBU5W3WNBTQXJ1XlBY1GwfoeZw?us
p=share_link
SK.Singh and A.kumar,”Alcohol Detection
System for Drunk Drivers,” International
Journal of Innovative Research in
Science,Enginneering and Technology,vol-
4,pp.11-14,2015.
R.K.Gupta and A.K.Sharma,”Design and
Development of Alcohol Detection System for
Vehicle Safety,” International Journal of
Advanced Research in Computer Science and
Software Engineering ,vol4,no-8,oo.1027-
1030,2014.
24