กลับไปหน้ารวมไฟล์
smart-street-light-6ad038-en.md

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:

  1. Reading Phase: The Arduino constantly checks the LDR voltage.
  2. Threshold Comparison: The code is programmed with a specific "Trigger Value" (e.g., if the reading is below 500).
  3. Execution:
    • Night Mode: If the environment is dark, the Arduino sends a HIGH signal 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.
  4. 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.

ข้อมูล Frontmatter ดั้งเดิม

title: "Smart Street Light"
description: "A smart street light system that automatically turns the led on when it gets dark."
author: "angadiameya007"
category: ""
tags:
  - "lights"
  - "smart appliances"
  - "human welfare"
views: 67120
likes: 3
price: 699
difficulty: "Easy"
components:
  - "1x Breadboard (generic)"
  - "1x Resistor 10k ohm"
  - "1x LDR, 5 Mohm"
  - "1x Jumper wires (generic)"
  - "1x High Brightness LED, White"
  - "1x Arduino UNO"
tools: []
apps:
  - "1x Arduino IDE"
downloadableFiles:
  - "https://projects.arduinocontent.cc/06c88d3d-902e-4ac5-bc8a-88ef3c34a459.ino"
  - "https://projects.arduinocontent.cc/06c88d3d-902e-4ac5-bc8a-88ef3c34a459.ino"
documentationLinks: []
passwordHash: "10021247b4d1406fcd706e83ba841249fedcb9422f2988ae0bd3991dbc52b693"
encryptedPayload: "U2FsdGVkX1+6AB2VkOdaN8DnVU401uJJmlSnSX0OJeDBLpEoCVBs66CPW0eabyxPiJpHciSCpPdMLbMUugnD1WkUozwDvDbaR6v4O2HV+OpgGqariiu5chrdv4txaONsLEeVk6UQ3diG5wYHlaj9YGTI3+1AOEHcW3n09RjJy7Js64HnqpGyAhUbYA2fMs8HuhwW9D6JwLzsKAp/ctLLcDYjtAgK2kdpyYYqVFDkkgz1YgPoO6qvy1nuuid6fDXMzGCA+xPgUbk7LfeB+LrIKA=="
seoDescription: "Smart Street Light system that automatically turns on LED when dark. Efficient lighting automation."
videoLinks:
  - "https://www.youtube.com/embed/f61HbTe9zgc"
heroImage: "https://cdn.jsdelivr.net/gh/bigboxthailand/arduino-assets@main/images/projects/smart-street-light-6ad038_cover.jpg"
lang: "en"