SMART STREET LIGHT
ONCE WHEN I WAS SITTING IN THE BALCONY I OBSERVED THE STREETLIGHTS OFF WHEN IT WAS DARK AND FROM THIS I GOT AN IDEA OF MAKING AN AUTOMATIC STREETLIGHT.
YOU CAN EVEN SEE MY YouTube VIDEO TO MAKE IT :-
THE PROCEDURES ARE GIVEN BELOW :-
Intelligent Lighting Overview
The Smart Street Light is a classic automation project that addresses energy conservation and urban safety. In many cities, street lights remain on a fixed timer or are manually switched, often leading to wasted energy during bright periods or dangerous darkness when timers are misaligned. This system uses a local light sensor to ensure that high-brightness LEDs only activate when ambient light levels fall below a specific "safety threshold."
Sensory Infrastructure: The LDR Circuit
The heart of the detection system is the LDR (Light Dependent Resistor).
- Voltage Divider: Because the Arduino cannot measure resistance directly, the LDR is paired with a 10k Ohm Resistor in a "voltage divider" configuration. As light hits the LDR, its resistance drops, which changes the voltage at the center point of the divider.
- Analog Input: The Arduino reads this shifting voltage through an Analog pin (like A0). It translates this to a numerical value between 0 (complete darkness) and 1023 (blinding light).
Control Logic: Dusk-to-Dawn Switching
The software logic operates as a high-frequency polling loop:
- Reading Phase: The Arduino constantly checks the LDR voltage.
- Threshold Comparison: The code is programmed with a specific "Trigger Value" (e.g., if the reading is below 500).
- Execution:
- Night Mode: If the environment is dark, the Arduino sends a
HIGHsignal to the LED pin, illuminating the street light. - Day Mode: As the sun rises and the LDR reading increases, the Arduino flips the LED pin to
LOW, immediately saving electricity.
- Night Mode: If the environment is dark, the Arduino sends a
- Hysteresis: Advanced versions of the code can include a small "buffer zone" to prevent the light from flickering if a cloud momentarily passes or if a car shadow hits the sensor.
Safety and Human Welfare
This project serves as a model for real-world municipal systems. By making street lights "aware" of their environment, we can significantly reduce the carbon footprint of public infrastructure while ensuring that community spaces are always safely lit when needed most. It is an ideal entry-level project for those interested in Smart City technology and Sustainability.