SlideShare a Scribd company logo
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 482
AUTOMATIC HEADLIGHT BEAM INTENSITY SWITCHER
Ramya Dhawle1
, Rohit Anvekar2
, Shivaji Kulkarni3
, Shrihari Durg4
1
Electronics and Communication, BVBCET, Hubli, Karnataka, India
2
Electronics and Communication, BVBCET, Hubli, Karnataka, India
3
Electronics and Communication, BVBCET, Hubli, Karnataka, India
4
Electronics and Communication, BVBCET, Hubli, Karnataka, India
Abstract
The evolution in the technology of automobiles has reached its peak. One of the most innovative features is the invention of driver
less car or an autonomous car. An autonomous car controls the motion, sensor activation and action automatically without any
human intervention. Such vehicles ensure high degree of safety, comfort and ease of driving. The project aims at designing a
system to be used in such autonomous cars. The project is to develop an automatic headlight beam intensity switcher. Such a
system will sense the beam status of opposing vehicle and switch the beam intensity of headlight. A sensor based mechanism is
utilized to develop the system. The beam intensity switcher plays a very important role while driving. During night time, when two
vehicles approach each other in opposite direction the high intensity headlight creates an effect called “Troxler effect”. This
effect creates a temporary blindness for some seconds thus resulting in unfortunate accidents. Thus, the high beam of both the
vehicles must be switched to low so as to have a comfortable driving. The use of such a device in cars can prevent accidents at
night time due to driver inattentiveness and provides an ease of driving. We have used the Arduino UNO board as our micro-
controller and application specific sensors. In our project we have designed a device which is a combination of software and
hardware coding. The sensor used is a light intensity sensor named BH1750 which has a wide range of sensing capacity. The light
sensor takes the “lux ” reading of the headlight rays from the opposing vehicle and checks for a threshold value assigned in the
coding. Based on the threshold value the beam switches from high to low state and vice-versa when both the vehicles pass by each
other. The same process takes place in opposite vehicle too. This device can be implanted on the front part of the car at an
appropriate position and angle.
Keywords: automatic, low cost, accurate, headlight beam intensity switcher, Troxler effect, sensor based mechanism
and lux readings.
--------------------------------------------------------------------***----------------------------------------------------------------------
1. INTRODUCTION
As per some international surveys around the world, most of
accidents occur at night time. These accidents are mainly
because of driver inattentiveness while driving. Thus an
autonomous car will ensure a safe and easy driving without
much human intervention. The effect at night time due to
high intensity beam too is responsible for fatal accidents.
Thus, an automatic beam switcher helps to switch the high
beam to low beam even when driver is inattentive, thereby
preventing accidents. The project aims at developing a
device or a system to sense the intensity of headlight from
opposing vehicle and switching the intensity of headlight
automatically based on readings from sensor. The operation
of system doesn’t depend on human actions.
1.1 Problem Statement
The problem statement for our project is to design a low
cost, accurate, easy to use and automatic headlight beam
intensity switcher to switch the beam intensity from either
high to low or vice-versa based on sensor inputs so as to
provide safety to the driver and assist in driving.
1.2 Survey
 Road accidents are more in night than during day due
to low visual conditions. [4]
 More than 40 percent of all automobile accidents
resulting in death occur at night, despite the fact that
there is up to 80 percent less traffic on the road than
during the day. (Germany's Federal Statistics Bureau).
The major reason is Troxler effect.[3]
 In 2012, road accidents increased by 3.3% when
compared to 2011 (Courtesy: NHTSA- Nat. High.
Traffic Safety Admin.)
 The National Safety Council says traffic death rates are
three times greater at night then during the day.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 483
1.3 Statistics
Fig.1 Graph indicating number of accidents at night time as
compared to day time.
Fig.2-Accident report of Asia due to Troxler effect in 2013
2. DESIGN PROCESS
2.1 Hardware Requirements
Component Specification Quantity
Power Supply 12V, 2.2A and 5V 1 each
Arduino Uno 1
Digital Light
sensor
BH1750 2
Relay 5V 2
Headlights (Dual
Filament Bulb)
12V, 35W 4
2.2 Block Diagram
2.3 Specification of Digital Light Sensor BH1750
 I2C bus interface.
 Illuminance to digital convertor.
 Wide range and high resolution (1-65535 lux).
 Low current by power down function.
 50Hz/60Hz light noise reject function.
 Operating Voltage: 3.3 – 5V.
 Dimensions – 21*16*3.3 mm.
 Influence of IR is very small.
2.4 Circuit Diagram
Fig -3: Circuit Diagram of the headlight.
Fig -4: BH1750 connections
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 484
2.5 Working
Initially the intensity values from the opposing vehicle are
read by the BH1750 digital light sensor. These readings are
sent to the Arduino board. If the value exceeds the limit of
around 100lux, indicating that the vehicle is nearing us, the
device switches the beam of the headlight from high to low
using a 5V relay. Simultaneously, the similar process takes
place in the opposing vehicle as well. Once the vehicles
have passed by each other the intensity again goes from low
to high. Thus the system automates the headlights and
assists the driver.
2.6 Arduino Code
/*
Sample code for the BH1750 Light sensor
Website :www.elecrow.com
Connection:
VCC-5v
GND-GND
SCL-SCL(analog pin 5)
SDA-SDA(analog pin 4)
ADD-NC or GND
*/
#include <Wire.h> //BH1750 IIC Mode
#include <math.h>
int BH1750address = 0x23; //setting i2c address
byte buff[2];
int led = 11,led1=12;
void setup()
{
Wire.begin();
Serial.begin(57600);//init Serail band rate
pinMode(led, OUTPUT);
pinMode(led1, OUTPUT);
}
void loop()
{
int i;
uint16_t val=0;
BH1750_Init(BH1750address);
delay(200);
if(2==BH1750_Read(BH1750address))
{
val=((buff[0]<<8)|buff[1])/1.2;
Serial.print(val,DEC);
Serial.println("[lx]");
}
delay(150);
if(val <= 250)
{
analogWrite(led, 255);
analogWrite(led1, 255);
}
else
{
analogWrite(led, 10);
analogWrite(led1, 10);
}
}
int BH1750_Read(int address) //
{
int i=0;
Wire.beginTransmission(address);
Wire.requestFrom(address, 2);
while(Wire.available()) //
{
buff[i] = Wire.read(); // receive one byte
i++;
}
Wire.endTransmission();
return i;
}
void BH1750_Init(int address)
{
Wire.beginTransmission(address);
Wire.write(0x10);//1lx reolution 120ms
Wire.endTransmission();
}
3. OUTPUT RESULTS
Fig-5: Output/Results of the product
3.1 Budget Approximation
Components Price (in Rs.)
1. Battery 3000/-
2. BH1750 530/-
3. Relay 25/-
4. Arduino
UNO
1500/-
5. Headlights 160/-
Total 5215/-
4. CONCLUSION
The working product thus achieves the aim of switching the
beam from high to low or vice-versa. This system not only
assists the driver but also protects him from the temporary
blindness due to the opposing headlight glare. Thus, the
product provides safety to the driver especially during the
night time. The product is low cost, accurate and small in
size.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 485
ACKNOWLEDGEMENTS
We are grateful to Dr. Uma Mudengudi, Head of the
Electronics and communication department, and our guide
Prof. Suhas Shirol for all the facilities provided in carrying
out our project. We avail this opportunity to thank Dr.
Ashok Shettar, Principal, B.V.B. College of Engineering
and Technology, Hubli, for all the facilities provided to us
and supporting us in all academic endeavors.
REFERENCES
[1]. http://www.micro4you.com/store/bh1750-light-
sensor.html
[2].http://www.elecrow.com/wiki/index.php?title=Digital_li
ght_Sensor
[3]. Automatic headlight dimmer a prototype for vehicles
Muralikrishnan , B.E, Electrical and Electronics
Engineering, Sri Venkateswara College of Engineering,
Tamil Nadu, India IJRET: International Journal of Research
in Engineering and Technology eISSN: 2319-1163 | pISSN:
2321-7308
[4].http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2564438/
figure/fig3.
BIOGRAPHIES
Name – Shivaji Kulkarni, CGPA – 8.98,
currently pursuing 7th
semester, B.E in
electronics and communication.
Name- Rohit Anvekar, CGPA - 7.87,
currently pursuing 7th
semester, B.E in
electronics and communication.
Name- Ramya Dhawle, CGPA- 9.12,
currently pursuing 7th
semester, B.E in
electronics and communication.
Name – Shrihari Durg, CGPA - ,currently
pursuing 7th semester, B.E. in electronics
and Communication.

More Related Content

What's hot

Ppt on project_ELECTOMAGNETIC_BRAKING_SYSTEM
Ppt on project_ELECTOMAGNETIC_BRAKING_SYSTEMPpt on project_ELECTOMAGNETIC_BRAKING_SYSTEM
Ppt on project_ELECTOMAGNETIC_BRAKING_SYSTEM
ANUPAM SINGH
 
A motor controller for solar car
A motor controller for solar carA motor controller for solar car
A motor controller for solar car
ibolix
 
Automatic high beam controller for vehicles
Automatic high beam controller for vehiclesAutomatic high beam controller for vehicles
Automatic high beam controller for vehicles
Anandu Rajasekharan
 
Automatic Breaking System
Automatic Breaking SystemAutomatic Breaking System
Automatic Breaking System
khan noor
 
5.5 gyroscope effect in 4 wheeler vehicle
5.5 gyroscope effect in 4 wheeler vehicle5.5 gyroscope effect in 4 wheeler vehicle
5.5 gyroscope effect in 4 wheeler vehicle
Kiran Wakchaure
 
Active suspension system
Active suspension systemActive suspension system
Active suspension system
Kiran Patil
 
Closed loop solar tracking System
Closed loop  solar tracking SystemClosed loop  solar tracking System
Closed loop solar tracking System
vinayak kumar
 
Automatic sun tracking system. ppt
Automatic sun tracking system. pptAutomatic sun tracking system. ppt
Automatic sun tracking system. ppt
Saumya Ranjan Behura
 
Magic body control
Magic body controlMagic body control
Magic body control
sooraj edappal
 
Solar tracking system - Report
Solar tracking system - ReportSolar tracking system - Report
Solar tracking system - Report
Amarjeet Singh Jamwal
 
Road Power Generator
Road Power GeneratorRoad Power Generator
Road Power Generator
Hasnain Arif
 
Advances in Automobile Safety Systems - Prashant Kumar
Advances in Automobile Safety Systems - Prashant KumarAdvances in Automobile Safety Systems - Prashant Kumar
Advances in Automobile Safety Systems - Prashant Kumar
Prashant Kumar
 
Hybrid vehicle architecture
Hybrid vehicle architectureHybrid vehicle architecture
Hybrid vehicle architecture
INTAKHAB KHAN
 
Electromagnetic braking system ppt
Electromagnetic braking system pptElectromagnetic braking system ppt
Electromagnetic braking system ppt
Shubhamrajsingh8
 
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptxUNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
prakash0712
 
Line Following Robot using Arduino UNO
Line Following Robot using Arduino UNOLine Following Robot using Arduino UNO
Line Following Robot using Arduino UNO
Viswanadh Ivaturi
 
Electromagnetic braking
Electromagnetic brakingElectromagnetic braking
Electromagnetic braking
Surya Prakash
 
Solar grass cutter
Solar grass cutterSolar grass cutter
Solar grass cutter
DEEP PRATAP SINGH
 
AUTONOMOUS VEHICLES
AUTONOMOUS VEHICLESAUTONOMOUS VEHICLES
AUTONOMOUS VEHICLES
Omer Mohammed
 
Modeling, simulation and optimization analysis of steering knuckle component ...
Modeling, simulation and optimization analysis of steering knuckle component ...Modeling, simulation and optimization analysis of steering knuckle component ...
Modeling, simulation and optimization analysis of steering knuckle component ...
eSAT Publishing House
 

What's hot (20)

Ppt on project_ELECTOMAGNETIC_BRAKING_SYSTEM
Ppt on project_ELECTOMAGNETIC_BRAKING_SYSTEMPpt on project_ELECTOMAGNETIC_BRAKING_SYSTEM
Ppt on project_ELECTOMAGNETIC_BRAKING_SYSTEM
 
A motor controller for solar car
A motor controller for solar carA motor controller for solar car
A motor controller for solar car
 
Automatic high beam controller for vehicles
Automatic high beam controller for vehiclesAutomatic high beam controller for vehicles
Automatic high beam controller for vehicles
 
Automatic Breaking System
Automatic Breaking SystemAutomatic Breaking System
Automatic Breaking System
 
5.5 gyroscope effect in 4 wheeler vehicle
5.5 gyroscope effect in 4 wheeler vehicle5.5 gyroscope effect in 4 wheeler vehicle
5.5 gyroscope effect in 4 wheeler vehicle
 
Active suspension system
Active suspension systemActive suspension system
Active suspension system
 
Closed loop solar tracking System
Closed loop  solar tracking SystemClosed loop  solar tracking System
Closed loop solar tracking System
 
Automatic sun tracking system. ppt
Automatic sun tracking system. pptAutomatic sun tracking system. ppt
Automatic sun tracking system. ppt
 
Magic body control
Magic body controlMagic body control
Magic body control
 
Solar tracking system - Report
Solar tracking system - ReportSolar tracking system - Report
Solar tracking system - Report
 
Road Power Generator
Road Power GeneratorRoad Power Generator
Road Power Generator
 
Advances in Automobile Safety Systems - Prashant Kumar
Advances in Automobile Safety Systems - Prashant KumarAdvances in Automobile Safety Systems - Prashant Kumar
Advances in Automobile Safety Systems - Prashant Kumar
 
Hybrid vehicle architecture
Hybrid vehicle architectureHybrid vehicle architecture
Hybrid vehicle architecture
 
Electromagnetic braking system ppt
Electromagnetic braking system pptElectromagnetic braking system ppt
Electromagnetic braking system ppt
 
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptxUNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
 
Line Following Robot using Arduino UNO
Line Following Robot using Arduino UNOLine Following Robot using Arduino UNO
Line Following Robot using Arduino UNO
 
Electromagnetic braking
Electromagnetic brakingElectromagnetic braking
Electromagnetic braking
 
Solar grass cutter
Solar grass cutterSolar grass cutter
Solar grass cutter
 
AUTONOMOUS VEHICLES
AUTONOMOUS VEHICLESAUTONOMOUS VEHICLES
AUTONOMOUS VEHICLES
 
Modeling, simulation and optimization analysis of steering knuckle component ...
Modeling, simulation and optimization analysis of steering knuckle component ...Modeling, simulation and optimization analysis of steering knuckle component ...
Modeling, simulation and optimization analysis of steering knuckle component ...
 

Similar to Automatic headlight beam intensity switcher

BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTION
IRJET Journal
 
The interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic conditionThe interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic condition
eSAT Publishing House
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motor
eSAT Publishing House
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motor
eSAT Journals
 
Dc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# applicationDc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# application
eSAT Publishing House
 
Dc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# applicationDc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# application
eSAT Journals
 
IRJET- Automatic Insurance Telematics for Four Wheelers
IRJET-  	  Automatic Insurance Telematics for Four WheelersIRJET-  	  Automatic Insurance Telematics for Four Wheelers
IRJET- Automatic Insurance Telematics for Four Wheelers
IRJET Journal
 
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONA SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
IRJET Journal
 
Automatic Car Parking
Automatic Car ParkingAutomatic Car Parking
Automatic Car Parking
IRJET Journal
 
Microcontroller based smart wear for driver safety
Microcontroller based smart wear for driver safetyMicrocontroller based smart wear for driver safety
Microcontroller based smart wear for driver safety
eSAT Journals
 
IRJET- Automatic License Issuing System
IRJET-  	  Automatic License Issuing SystemIRJET-  	  Automatic License Issuing System
IRJET- Automatic License Issuing System
IRJET Journal
 
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink SensorDrowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
IRJET Journal
 
Design and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing robotDesign and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing robot
eSAT Journals
 
IRJET- Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...
IRJET-  	  Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...IRJET-  	  Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...
IRJET- Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...
IRJET Journal
 
Master slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applicationsMaster slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applications
eSAT Journals
 
Design and Implementation of an Arduino-Based Accident Prevention System
Design and Implementation of an Arduino-Based Accident Prevention SystemDesign and Implementation of an Arduino-Based Accident Prevention System
Design and Implementation of an Arduino-Based Accident Prevention System
IRJET Journal
 
IRJET - IoT based Low Cost Vehicle Monitoring and Alert System
IRJET - IoT based Low Cost Vehicle Monitoring and Alert SystemIRJET - IoT based Low Cost Vehicle Monitoring and Alert System
IRJET - IoT based Low Cost Vehicle Monitoring and Alert System
IRJET Journal
 
Smart human two wheeler safety system
Smart human two wheeler safety systemSmart human two wheeler safety system
Smart human two wheeler safety system
IRJET Journal
 
Fire fighting robot
Fire fighting robotFire fighting robot
Fire fighting robot
IRJET Journal
 
Design of wheelchair using finger operation with image processing algorithms
Design of wheelchair using finger operation with image processing algorithmsDesign of wheelchair using finger operation with image processing algorithms
Design of wheelchair using finger operation with image processing algorithms
eSAT Publishing House
 

Similar to Automatic headlight beam intensity switcher (20)

BOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTIONBOT FOR WILDLIFE PROTECTION
BOT FOR WILDLIFE PROTECTION
 
The interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic conditionThe interconnecting mechanism for monitoring regular domestic condition
The interconnecting mechanism for monitoring regular domestic condition
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motor
 
Voice enabled speed control of ac motor
Voice enabled speed control of ac motorVoice enabled speed control of ac motor
Voice enabled speed control of ac motor
 
Dc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# applicationDc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# application
 
Dc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# applicationDc motor speed control with feedback monitor based on c# application
Dc motor speed control with feedback monitor based on c# application
 
IRJET- Automatic Insurance Telematics for Four Wheelers
IRJET-  	  Automatic Insurance Telematics for Four WheelersIRJET-  	  Automatic Insurance Telematics for Four Wheelers
IRJET- Automatic Insurance Telematics for Four Wheelers
 
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTIONA SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
A SURVEY ON SMART ENERGY METER WITH BILLING AND THEFT DETECTION
 
Automatic Car Parking
Automatic Car ParkingAutomatic Car Parking
Automatic Car Parking
 
Microcontroller based smart wear for driver safety
Microcontroller based smart wear for driver safetyMicrocontroller based smart wear for driver safety
Microcontroller based smart wear for driver safety
 
IRJET- Automatic License Issuing System
IRJET-  	  Automatic License Issuing SystemIRJET-  	  Automatic License Issuing System
IRJET- Automatic License Issuing System
 
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink SensorDrowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
Drowsiness Detected For Vehicle Using Smart Glass With Eye Blink Sensor
 
Design and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing robotDesign and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing robot
 
IRJET- Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...
IRJET-  	  Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...IRJET-  	  Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...
IRJET- Road Safety with a Smart Helmet for Two Wheeler Vehicle with Autom...
 
Master slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applicationsMaster slave autonomous surveillance bot for military applications
Master slave autonomous surveillance bot for military applications
 
Design and Implementation of an Arduino-Based Accident Prevention System
Design and Implementation of an Arduino-Based Accident Prevention SystemDesign and Implementation of an Arduino-Based Accident Prevention System
Design and Implementation of an Arduino-Based Accident Prevention System
 
IRJET - IoT based Low Cost Vehicle Monitoring and Alert System
IRJET - IoT based Low Cost Vehicle Monitoring and Alert SystemIRJET - IoT based Low Cost Vehicle Monitoring and Alert System
IRJET - IoT based Low Cost Vehicle Monitoring and Alert System
 
Smart human two wheeler safety system
Smart human two wheeler safety systemSmart human two wheeler safety system
Smart human two wheeler safety system
 
Fire fighting robot
Fire fighting robotFire fighting robot
Fire fighting robot
 
Design of wheelchair using finger operation with image processing algorithms
Design of wheelchair using finger operation with image processing algorithmsDesign of wheelchair using finger operation with image processing algorithms
Design of wheelchair using finger operation with image processing algorithms
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
eSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
eSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
eSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
eSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
eSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
eSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
eSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
eSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
eSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
eSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
eSAT Journals
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
eSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

P5 Working Drawings.pdf floor plan, civil
P5 Working Drawings.pdf floor plan, civilP5 Working Drawings.pdf floor plan, civil
P5 Working Drawings.pdf floor plan, civil
AnasAhmadNoor
 
Object Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOADObject Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOAD
PreethaV16
 
Accident detection system project report.pdf
Accident detection system project report.pdfAccident detection system project report.pdf
Accident detection system project report.pdf
Kamal Acharya
 
Blood finder application project report (1).pdf
Blood finder application project report (1).pdfBlood finder application project report (1).pdf
Blood finder application project report (1).pdf
Kamal Acharya
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
shadow0702a
 
OOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming languageOOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming language
PreethaV16
 
Null Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAMNull Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAM
Divyanshu
 
Pressure Relief valve used in flow line to release the over pressure at our d...
Pressure Relief valve used in flow line to release the over pressure at our d...Pressure Relief valve used in flow line to release the over pressure at our d...
Pressure Relief valve used in flow line to release the over pressure at our d...
cannyengineerings
 
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
ydzowc
 
2. protection of river banks and bed erosion protection works.ppt
2. protection of river banks and bed erosion protection works.ppt2. protection of river banks and bed erosion protection works.ppt
2. protection of river banks and bed erosion protection works.ppt
abdatawakjira
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
Anant Corporation
 
ITSM Integration with MuleSoft.pptx
ITSM  Integration with MuleSoft.pptxITSM  Integration with MuleSoft.pptx
ITSM Integration with MuleSoft.pptx
VANDANAMOHANGOUDA
 
An Introduction to the Compiler Designss
An Introduction to the Compiler DesignssAn Introduction to the Compiler Designss
An Introduction to the Compiler Designss
ElakkiaU
 
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
PriyankaKilaniya
 
Height and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdfHeight and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdf
q30122000
 
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
sydezfe
 
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptxSENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
b0754201
 
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
Gino153088
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
Atif Razi
 
Zener Diode and its V-I Characteristics and Applications
Zener Diode and its V-I Characteristics and ApplicationsZener Diode and its V-I Characteristics and Applications
Zener Diode and its V-I Characteristics and Applications
Shiny Christobel
 

Recently uploaded (20)

P5 Working Drawings.pdf floor plan, civil
P5 Working Drawings.pdf floor plan, civilP5 Working Drawings.pdf floor plan, civil
P5 Working Drawings.pdf floor plan, civil
 
Object Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOADObject Oriented Analysis and Design - OOAD
Object Oriented Analysis and Design - OOAD
 
Accident detection system project report.pdf
Accident detection system project report.pdfAccident detection system project report.pdf
Accident detection system project report.pdf
 
Blood finder application project report (1).pdf
Blood finder application project report (1).pdfBlood finder application project report (1).pdf
Blood finder application project report (1).pdf
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
 
OOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming languageOOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming language
 
Null Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAMNull Bangalore | Pentesters Approach to AWS IAM
Null Bangalore | Pentesters Approach to AWS IAM
 
Pressure Relief valve used in flow line to release the over pressure at our d...
Pressure Relief valve used in flow line to release the over pressure at our d...Pressure Relief valve used in flow line to release the over pressure at our d...
Pressure Relief valve used in flow line to release the over pressure at our d...
 
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
原版制作(Humboldt毕业证书)柏林大学毕业证学位证一模一样
 
2. protection of river banks and bed erosion protection works.ppt
2. protection of river banks and bed erosion protection works.ppt2. protection of river banks and bed erosion protection works.ppt
2. protection of river banks and bed erosion protection works.ppt
 
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by AnantLLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
LLM Fine Tuning with QLoRA Cassandra Lunch 4, presented by Anant
 
ITSM Integration with MuleSoft.pptx
ITSM  Integration with MuleSoft.pptxITSM  Integration with MuleSoft.pptx
ITSM Integration with MuleSoft.pptx
 
An Introduction to the Compiler Designss
An Introduction to the Compiler DesignssAn Introduction to the Compiler Designss
An Introduction to the Compiler Designss
 
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
 
Height and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdfHeight and depth gauge linear metrology.pdf
Height and depth gauge linear metrology.pdf
 
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
 
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptxSENTIMENT ANALYSIS ON PPT AND Project template_.pptx
SENTIMENT ANALYSIS ON PPT AND Project template_.pptx
 
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
4. Mosca vol I -Fisica-Tipler-5ta-Edicion-Vol-1.pdf
 
Applications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdfApplications of artificial Intelligence in Mechanical Engineering.pdf
Applications of artificial Intelligence in Mechanical Engineering.pdf
 
Zener Diode and its V-I Characteristics and Applications
Zener Diode and its V-I Characteristics and ApplicationsZener Diode and its V-I Characteristics and Applications
Zener Diode and its V-I Characteristics and Applications
 

Automatic headlight beam intensity switcher

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 482 AUTOMATIC HEADLIGHT BEAM INTENSITY SWITCHER Ramya Dhawle1 , Rohit Anvekar2 , Shivaji Kulkarni3 , Shrihari Durg4 1 Electronics and Communication, BVBCET, Hubli, Karnataka, India 2 Electronics and Communication, BVBCET, Hubli, Karnataka, India 3 Electronics and Communication, BVBCET, Hubli, Karnataka, India 4 Electronics and Communication, BVBCET, Hubli, Karnataka, India Abstract The evolution in the technology of automobiles has reached its peak. One of the most innovative features is the invention of driver less car or an autonomous car. An autonomous car controls the motion, sensor activation and action automatically without any human intervention. Such vehicles ensure high degree of safety, comfort and ease of driving. The project aims at designing a system to be used in such autonomous cars. The project is to develop an automatic headlight beam intensity switcher. Such a system will sense the beam status of opposing vehicle and switch the beam intensity of headlight. A sensor based mechanism is utilized to develop the system. The beam intensity switcher plays a very important role while driving. During night time, when two vehicles approach each other in opposite direction the high intensity headlight creates an effect called “Troxler effect”. This effect creates a temporary blindness for some seconds thus resulting in unfortunate accidents. Thus, the high beam of both the vehicles must be switched to low so as to have a comfortable driving. The use of such a device in cars can prevent accidents at night time due to driver inattentiveness and provides an ease of driving. We have used the Arduino UNO board as our micro- controller and application specific sensors. In our project we have designed a device which is a combination of software and hardware coding. The sensor used is a light intensity sensor named BH1750 which has a wide range of sensing capacity. The light sensor takes the “lux ” reading of the headlight rays from the opposing vehicle and checks for a threshold value assigned in the coding. Based on the threshold value the beam switches from high to low state and vice-versa when both the vehicles pass by each other. The same process takes place in opposite vehicle too. This device can be implanted on the front part of the car at an appropriate position and angle. Keywords: automatic, low cost, accurate, headlight beam intensity switcher, Troxler effect, sensor based mechanism and lux readings. --------------------------------------------------------------------***---------------------------------------------------------------------- 1. INTRODUCTION As per some international surveys around the world, most of accidents occur at night time. These accidents are mainly because of driver inattentiveness while driving. Thus an autonomous car will ensure a safe and easy driving without much human intervention. The effect at night time due to high intensity beam too is responsible for fatal accidents. Thus, an automatic beam switcher helps to switch the high beam to low beam even when driver is inattentive, thereby preventing accidents. The project aims at developing a device or a system to sense the intensity of headlight from opposing vehicle and switching the intensity of headlight automatically based on readings from sensor. The operation of system doesn’t depend on human actions. 1.1 Problem Statement The problem statement for our project is to design a low cost, accurate, easy to use and automatic headlight beam intensity switcher to switch the beam intensity from either high to low or vice-versa based on sensor inputs so as to provide safety to the driver and assist in driving. 1.2 Survey  Road accidents are more in night than during day due to low visual conditions. [4]  More than 40 percent of all automobile accidents resulting in death occur at night, despite the fact that there is up to 80 percent less traffic on the road than during the day. (Germany's Federal Statistics Bureau). The major reason is Troxler effect.[3]  In 2012, road accidents increased by 3.3% when compared to 2011 (Courtesy: NHTSA- Nat. High. Traffic Safety Admin.)  The National Safety Council says traffic death rates are three times greater at night then during the day.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 483 1.3 Statistics Fig.1 Graph indicating number of accidents at night time as compared to day time. Fig.2-Accident report of Asia due to Troxler effect in 2013 2. DESIGN PROCESS 2.1 Hardware Requirements Component Specification Quantity Power Supply 12V, 2.2A and 5V 1 each Arduino Uno 1 Digital Light sensor BH1750 2 Relay 5V 2 Headlights (Dual Filament Bulb) 12V, 35W 4 2.2 Block Diagram 2.3 Specification of Digital Light Sensor BH1750  I2C bus interface.  Illuminance to digital convertor.  Wide range and high resolution (1-65535 lux).  Low current by power down function.  50Hz/60Hz light noise reject function.  Operating Voltage: 3.3 – 5V.  Dimensions – 21*16*3.3 mm.  Influence of IR is very small. 2.4 Circuit Diagram Fig -3: Circuit Diagram of the headlight. Fig -4: BH1750 connections
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 484 2.5 Working Initially the intensity values from the opposing vehicle are read by the BH1750 digital light sensor. These readings are sent to the Arduino board. If the value exceeds the limit of around 100lux, indicating that the vehicle is nearing us, the device switches the beam of the headlight from high to low using a 5V relay. Simultaneously, the similar process takes place in the opposing vehicle as well. Once the vehicles have passed by each other the intensity again goes from low to high. Thus the system automates the headlights and assists the driver. 2.6 Arduino Code /* Sample code for the BH1750 Light sensor Website :www.elecrow.com Connection: VCC-5v GND-GND SCL-SCL(analog pin 5) SDA-SDA(analog pin 4) ADD-NC or GND */ #include <Wire.h> //BH1750 IIC Mode #include <math.h> int BH1750address = 0x23; //setting i2c address byte buff[2]; int led = 11,led1=12; void setup() { Wire.begin(); Serial.begin(57600);//init Serail band rate pinMode(led, OUTPUT); pinMode(led1, OUTPUT); } void loop() { int i; uint16_t val=0; BH1750_Init(BH1750address); delay(200); if(2==BH1750_Read(BH1750address)) { val=((buff[0]<<8)|buff[1])/1.2; Serial.print(val,DEC); Serial.println("[lx]"); } delay(150); if(val <= 250) { analogWrite(led, 255); analogWrite(led1, 255); } else { analogWrite(led, 10); analogWrite(led1, 10); } } int BH1750_Read(int address) // { int i=0; Wire.beginTransmission(address); Wire.requestFrom(address, 2); while(Wire.available()) // { buff[i] = Wire.read(); // receive one byte i++; } Wire.endTransmission(); return i; } void BH1750_Init(int address) { Wire.beginTransmission(address); Wire.write(0x10);//1lx reolution 120ms Wire.endTransmission(); } 3. OUTPUT RESULTS Fig-5: Output/Results of the product 3.1 Budget Approximation Components Price (in Rs.) 1. Battery 3000/- 2. BH1750 530/- 3. Relay 25/- 4. Arduino UNO 1500/- 5. Headlights 160/- Total 5215/- 4. CONCLUSION The working product thus achieves the aim of switching the beam from high to low or vice-versa. This system not only assists the driver but also protects him from the temporary blindness due to the opposing headlight glare. Thus, the product provides safety to the driver especially during the night time. The product is low cost, accurate and small in size.
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 485 ACKNOWLEDGEMENTS We are grateful to Dr. Uma Mudengudi, Head of the Electronics and communication department, and our guide Prof. Suhas Shirol for all the facilities provided in carrying out our project. We avail this opportunity to thank Dr. Ashok Shettar, Principal, B.V.B. College of Engineering and Technology, Hubli, for all the facilities provided to us and supporting us in all academic endeavors. REFERENCES [1]. http://www.micro4you.com/store/bh1750-light- sensor.html [2].http://www.elecrow.com/wiki/index.php?title=Digital_li ght_Sensor [3]. Automatic headlight dimmer a prototype for vehicles Muralikrishnan , B.E, Electrical and Electronics Engineering, Sri Venkateswara College of Engineering, Tamil Nadu, India IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 [4].http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2564438/ figure/fig3. BIOGRAPHIES Name – Shivaji Kulkarni, CGPA – 8.98, currently pursuing 7th semester, B.E in electronics and communication. Name- Rohit Anvekar, CGPA - 7.87, currently pursuing 7th semester, B.E in electronics and communication. Name- Ramya Dhawle, CGPA- 9.12, currently pursuing 7th semester, B.E in electronics and communication. Name – Shrihari Durg, CGPA - ,currently pursuing 7th semester, B.E. in electronics and Communication.