Power Saving Mechanism For Street Light: Final Report Submitted For
Power Saving Mechanism For Street Light: Final Report Submitted For
BY:-
1. PRABHAT KUMAR (BE/10265/17)
2. VIPLAW KUMAR (BE/10077/17)
3. AHMAD FAROOQUE (BE/10086/17)
CERTIFICATE
ACKNOWLEDGEMENT
ABSTRACT
The aim of the project is to design such system through which we can
save the electricity of the street light on the highways using arduino.
We have build an innovative street lighting system with optimized
management and efficiency. The system allows substantial energy
savings with increased performance and maintainability.
In this project we are proposing a simpler, multipurpose, cost-
effective design. The main objective is to control the street lights (dim
during dawn and dusk time as well as bright during night time).IR
sensors have been used here for sensing whether any vehicle is on the
track or not,or any person is on pedestrian or not, by making use of
arduino it automatically turns on and off the street light.
POWER SAVING MECHANISM FOR STREET LIGHT
CONTENTS
i. Introduction
ii. Aim of project
iii. Description of Project
iv. Hardware Required
v. Arduino Code
vi. Working Model & Working
vii. Applications
viii. Advantages & Disadvantages
ix. Extra Developments
x. Conclusion
xi. Reference
POWER SAVING MECHANISM FOR STREET LIGHT
INTRODUCTION
Page 1 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
HARDWARE REQUIRED
In this project the components used are:-
S.No. COMPONENETS SPECIFICATION
2. LDR 100V,5kΩ,50mW
3. IR Sensors 12V,15W,0-10cm
4. Transformer 220V/12V
6. Veroboard -
Page 2 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
ARDUINO UNO
Page 3 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
IR SENSORS
Features of IR Sensor Module:-
Page 4 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
Interface(3-wire):-
Page 5 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
The most common type of LDR has a resistance that falls with an
increase in the light intensity falling upon the device (as shown in the
image above). The resistance of an LDR may typically have the
following resistances:
Daylight = 5000Ω
Dark = 20000000Ω
Page 6 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
TRANSFORMER
VOLTAGE REGULATOR(7805)
Page 7 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
KBL406
Page 8 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
Specifications
Page 9 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
VEROBOARD
Page 10 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
BREAD BOARD
A breadboard is a solderless board and connect the holes on
device for temporary prototype the top of the board. The metal
with electronics and test circuit strips are laid out as shown
designs. Most electronic below. Note that the top and
components in electronic bottom rows of holes are
circuits can be interconnected connected horizontally and split
by inserting their leads or in the middle while the
terminals into the holes and remaining holes are connected
then making connections vertically.
through wires where
appropriate. The breadboard has
strips of metal underneath the
Page 11 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
SCREW TERMINALS
A screw terminal is a type of electrical connector where a wire is held
by the tightening of a screw.
Page 12 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
ARDUINO CODE
int led[]={2,4,7,8,12,13};
int ir[]={A0,A1,A2,A3,A4};
int irvalue[5];
//int full,half,bright=50;
int a=0,b=0;
int ldrValue=0;
int ldr=A5;
void setup() {
for(int i=0;i<6;i++)
{
pinMode(led[i],OUTPUT);
}
for(int i=0;i<5;i++)
{pinMode(ir[i],INPUT);}
pinMode(ldr,INPUT);
Serial.begin(9600);
}
void loop()
{
ldrValue=analogRead(A5);
if (ldrValue<500)
{
Page 13 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
for(int a=0;a<5;a++)
{digitalWrite(led[a],LOW);}
}
else
{
if (analogRead(A0)<200)
{
digitalWrite(led[0],HIGH);
digitalWrite(led[1],HIGH);
digitalWrite(led[2],LOW);
digitalWrite(led[3],LOW);
digitalWrite(led[4],LOW);
digitalWrite(led[5],LOW);
}
if (analogRead(A1)<200)
{
digitalWrite(led[0],LOW);
digitalWrite(led[1],HIGH);
digitalWrite(led[2],HIGH);
digitalWrite(led[3],LOW);
digitalWrite(led[4],LOW);
digitalWrite(led[5],LOW);
}
if (analogRead(A2)<200)
{
Page 14 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
digitalWrite(led[0],LOW);
digitalWrite(led[1],LOW);
digitalWrite(led[2],HIGH);
digitalWrite(led[3],HIGH);
digitalWrite(led[4],LOW);
digitalWrite(led[5],LOW);
}
if (analogRead(A3)<200)
{
digitalWrite(led[0],LOW);
digitalWrite(led[1],LOW);
digitalWrite(led[2],LOW);
digitalWrite(led[3],HIGH);
digitalWrite(led[4],HIGH);
digitalWrite(led[5],LOW);
}
if (analogRead(A4)<200)
{
digitalWrite(led[0],LOW);
digitalWrite(led[1],LOW);
digitalWrite(led[2],LOW);
digitalWrite(led[3],LOW);
digitalWrite(led[4],HIGH);
digitalWrite(led[5],HIGH);
}}}
Page 15 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
Page 16 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
WORKING CIRCUIT
APPLICATIONS
• It can be used in highways and other roads where it is not
possible to switch off each and every street light.
Page 17 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
WORKING MODEL
Page 18 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
ADVANTAGES
DISADVANTAGES
EXTRA DEVELOPMENTS
Page 19 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
CONCLUSION
Now a days, in urban areas , Street Lights consume the largest amount
of electricity and can increase up to 40% of total budget. If every
urban and suburban city installed proposed mechanism then a lot of
power can be saved and the project is Power saving Mechanism for
street light using IR sensors and LDR. This scheme is a Low cost,
remote controlling capability, and can be used to monitor the street
lights. Using this technique, the power consumption is reduced to
great extend and also the operational cost get reduce. In future,
Electricity Department might adopt this kind of systems in order to
save power as well as the cost. It is a most reliable and time efficient
way to switch ON-OFF the street lights. While in practical
applications, this scheme is used to control lighting scheme of
industrial areas , colleges and also used in university campus.
Page 20 of 27
POWER SAVING MECHANISM FOR STREET LIGHT
REFERENCES
Page 21 of 27