MINI PROJECT PRESENTATION
PROJECT- AUTOMATIC STREET LIGHT CONTROLLER USING ARDUINO
Automatic Street Light C
Submitted By
Submitted To
VEDANT SAXENA EL-II
DR. ARUN KUMAR SINGH (HOD) SUDHIR MAURYA EL-II
MENTOR : ABHINAV RAI EL-II
MR. GAURISH JOSHI VINEET JAISWAL EL-II
SHIVAM SINGH EL-II
PROJECT- AUTOMATIC STREET LIGHT CONTROLLER USING ARDUINO
RAJKIYA ENGINEERING COLLEGE , KANNAUJ
Presented To-
Dr. Arun Kumar Singh (HOD)
Guided by :
Mr. Gaurish Joshi
ABSTRACT :- Our manuscript aims to develop a system which will lead to energy conservation and by doing so, we would be
able to lighten few more homes. The proposed work is accomplished by using Arduino microcontroller and sensors that will
control the electricity based on night and object's detection. Meanwhile, a counter is set that will count the number of
objects passed through the road. The beauty of the proposed work is that the wastage of unused electricity can be reduced,
lifetime of the streetlights gets enhance because the lights do not stay ON during the whole night, and also helps to increase
safety measurements. We are confident that the proposed idea will be beneficial in the future applications of
microcontrollers and sensors etc. INDEXED TERMS Automation, Switching, Energy conservation, Arduino, Sensors.
SOURCE:-
Presented By – Roll no.
https://create.arduino.cc/projecthub/automatic-street-light-controller- Vedant Saxena EL 65
27159f Sudhir Maurya EL 58
Abhinav Rai EL 04
Vineet Jaiswal EL 66
Shivam Singh EL 55
Automatic street light control is used to control the street lights(Turn on and off based on
the light). Here we make use of LDR (Light Dependent Resistor) and LED(Light Emitting
diode) and Arduino.
GND
Hard Ware Components Required:
LED LDR
POWER
SUPPLY ARDUINO RESISTOR
CONNECTING BREAD
WIRES BOARD
LDR (LIGHT DEPENDENT RESISTOR)
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 often used as
light sensor, light meter, Automatic street lights and in area where we
need to have light sensitivity.
RESISTORS CONNECTING WIRES
ARDUINO UNO
Arduino UNO is a low-cost, flexible, and easy-to-use
programmable open-source microcontroller board that
can be integrated into a variety of electronic projects. This
board can be interfaced with other Arduino boards,
Arduino shields, Raspberry Pi boards and can control
relays, LEDs, servos, and motors as an output.
Arduino UNO features AVR microcontroller Atmega328, 6
analogue input pins, and 14 digital I/O pins out of which 6
are used as PWM output.
LED BREAD BOARD
Hardware Connections:
•Arduino 13th pin connected to LED +ve
•Arduino GND connected to LED -ve through 1k
•Arduino +5v is connected to LDR One End
•Arduino A0 pin is connected to LDR other end
•Arduino GND is connected to LDR other end with 1k
•Arduino
ON LED OFF LED
PROGRAMING CODE FOR ARDUINO UNO
void setup() {
Serial.begin(9600);
pinMode(13,OUTPUT);
}
void loop() {
float sensorValue =
analogRead(A0);
// Reads the analog input ranging
from 0 to 1023
Serial.println(sensorValue);
if(sensorValue<=200)
{
digitalWrite(13,HIGH);
}
else
digitalWrite(13,LOW);
}
SIMULATION