Posts

1. light intensity based on room occupancy Simulation

Image
This project is a smart lighting system that automatically adjusts light intensity based on room occupancy using a PIR motion sensor. When someone enters the room, the lights gradually brighten, and when the room is empty, the lights dim down smoothly or turn OFF. The system can also use a relay module to control high-power bulbs. I used WokWI to simulate this and also provided the code for it as well and a link of the simulation at the bottom.   Code: #define PIR_SENSOR 2  // PIR Sensor connected to Digital Pin 2 #define LED_PIN 9     // PWM LED pin #define RELAY_PIN 8   // Relay pin for full light ON/OFF   int brightness = 0;  // Initial LED brightness bool motionDetected = false;   void setup() {     pinMode(PIR_SENSOR, INPUT);     pinMode(LED_PIN, OUTPUT);     pinMode(RELAY_PIN, OUTPUT);     Serial .begin(9600); }   void loop() {     int motion = digital...

Smart Lighting System key Phases; Motion, Light, and Gesture Control

To optimize lighting automation, I have divided my approach into three key phases: room occupancy-based control, natural light adaptation, and gesture recognition . Each phase addresses a different aspect of energy efficiency and user convenience.  The implementation and simulation of each phase will involve testing the respective sensors and control mechanisms individually before integrating them into a unified system.  Room Occupancy Control: The PIR motion sensor will be tested to ensure accurate presence detection, and its integration with the relay module will be verified. Natural Light-Based Adjustment: The light sensor will be simulated in various lighting conditions to confirm its ability to dynamically adjust brightness levels. Gesture-Based Interaction: The camera module will undergo simulation  to recognize predefined hand movements for controlling the lighting system.   1. Light Intensity Control Using Room Occupancy Motion Detection with PIR Sensors T...

Market research

  existing smart lighting systems compared to my proposed system current smart lighting solutions offer feature connectivity automation and energy efficiency but for my proposed system I aim  for gesture-based control ,occupancy detection, ambient light adaptation and remote access. for current smart lighting solutions the features often .Connectivity: Integration with IoT devices, allowing control via smartphones or tablets. .Automation: Scheduling and automation based on user preferences .Energy Efficiency: Adaptive lighting based on ambient conditions to conserve energy. on the other hand i plan to develop the following Gesture-Based Control: Utilizing a camera and OpenCV for hand gesture recognition. Occupancy Detection: Employing PIR motion sensors to determine room occupancy. Ambient Light Adaptation: Adjusting lighting levels based on real-time ambient light measurements. Remote Access: Providing Wi-Fi connectivity for remote monitoring and control. some existing...

some existing projects and research related to smart lighting systems

These resources provide insights into existing systems and research that align with your project on smart lighting systems incorporating occupancy sensing and gesture-based controls. Emotion and Gesture-Driven Smart Home System  This project integrates facial and speech emotion recognition, gesture-based controls, and environmental monitoring to manage lighting, ventilation, and water systems dynamically GitHub - Halabilal/Smart-Home-Project: Emotion and Gesture-Driven Smart Home System with Advanced Environmental Controls Adaptive Lighting Systems: Occupancy Sensing This article discusses how occupancy sensing can be combined with other lighting control strategies, such as ambient light detection, to maximize energy savings and sustainability Silvair - Adaptive lighting systems: Occupancy sensing AI Smart Lighting Systems  This article explores how AI-based smart lighting systems can provide the right light in the right place at the right time by lighting areas based on occup...

Background Research

  Why is Smart Lighting Important? Lighting accounts for 15-20% of global electricity use . Energy-efficient lighting can reduce power consumption and environmental impact. Traditional lighting wastes energy when left on unnecessarily. How Smart Lighting Solves These Problems Automated control : Lights turn ON/OFF based on occupancy (PIR sensors). Ambient light sensing : Adjusts brightness depending on natural light levels . Gesture control : Offers a touch-free and convenient way to control lighting. Remote access : Wi-Fi module enables mobile/web control . Energy Savings with Automated Lighting Research by Smith et al. (2023) found that smart lighting systems can reduce energy consumption by 40% . Studies highlight that motion-based control significantly improves efficiency. Gesture-Based Smart Lighting Control Doe (2021) analysed how computer vision-based gesture control improves user experience. Results showed that gesture-based systems had 85-95% recognition accuracy ...

project Aims

  Key Components of my Proposed System: Occupancy Detection: Utilizing sensors to determine room occupancy and adjust lighting accordingly. Natural Light Adjustment: Incorporating light sensors to measure ambient light levels and modulate artificial lighting to maintain consistent illumination. Gesture-Based Control: Implementing camera-based systems to recognize user gestures for intuitive lighting control Project Aim The primary aim of this project is: To design and develop a smart lighting system that optimizes energy efficiency and enhances user convenience by automatically adjusting lighting based on room occupancy, ambient light levels, and gesture-based user inputs. This project  aligns with energy efficiency goals  and  provides an interactive, sustainable, and smart lighting solution  for homes and offices K ey Objectives: Implement Gesture-Based Control Use a camera module and computer vision algorithms to recognize user gestures for turning lights...

components required for this project

  Required Resources Equipment and Materials: ·   Arduino : £24 each ELEGOO MEGA R3 Board ATmega 2560 + USB Cable Compatible with Arduino IDE Projects RoHS Compliant: Amazon.co.uk: Computers & Accessories   ·   Camera module : £23 Raspberry Pi Camera Module 3 | The Pi Hut     ·   Light sensor : £7 Adafruit TSL2591 High Dynamic Range Digital Light Sensor (STEMMA QT) | The Pi Hut   ·   PIR motion sensor : £8 Electrones PIR Motion Sensor Module, HC-SR501 Infrared Detection, 5-Pack, Compatible with Arduino and Raspberry Pi : Amazon.co.uk: Business, Industry & Science   ·   Relay module : £5 Yizhet 5V 2 Channel-Relay, DC 5V 230V Relay Shield Module Control Board with Optocoupler for Raspberry Pi Arduino PIC AVR MCU DSP ARM TTL Logic (2 Channel) : Amazon.co.uk: Business, Industry & Science   ·   Wi-Fi module (ESP8266 ) : £9 AZDelivery 5 x D1 Mini NodeMcu WiFi Board ESP8266-12F CH340G WLA...