SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
International Journal of Engineering Research and Development
e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com
Volume 10, Issue 6 (June 2014), PP.55-59
55
Intelligent Home Lighting System
Praneet Dutta1
Ronit Rudra2
1
(VIT University,praneetdutta93@yahoo.com)2
(VIT University, ronit.rudra1995@gmail.com)
Abstract:- this project has been carried out to create a sample “Intelligent Home Lighting System” which uses
sensors and microcontroller interfacing in order to keep track of the number of people in a room and to
automatically shut off the main power supply if the room occupancy reaches zero.
Index Terms:- Arduino Uno, 7805 voltage regulator, Relay, Light Dependent Resistor, Transformer, Liquid
Crystal, Serial Input.
I. INTRODUCTION
It is common knowledge that a majority of people forget to turn off the lighting and other electrical and
electronic devices after vacating a room. This malpractice leads to the wastage of a lot of electricity and as a
result, money. This project has been prototyped as a functional energy saving electronic device which will
automatically cut off power to the room if the occupancy in the room is zero. Typically only the power to non-
vital components, such as lights and fans, will be cut off. It is inadvisable to switch of power to vital electrical or
electronic devices such as servers, active workstations, experimental equipment etc. These devices must have
their power routed outside the scope of the system in question.
The design of the circuit is fairly simple. The main power line to the room is diverted through the circuit before
powering the electrical devices in the room. A pair of Light Dependent Resistors keep track of the number of
people in the room and their output signal is fed to the Arduino board through Serial Analog input channels. The
Arduino board also controls the relay switch which cuts off power to the room accordingly. A Liquid Crystal
Display interfaced with the Arduino Board dynamically displays the number of people in the room.
II. COMPONENTS REQUIRED
The following components have been used for this project:
 Arduino Uno x1
 Transformer 230 to 12 Volt x1
 Diode 1N4007 x4
 Light Dependent Resistor x2
 Electrolytic Capacitor 1000uF/35V x1
 Ceramic Capacitor 0.1uF x1
 Carbon Resistor 1K ohm x2
 Potentiometer 10K ohm x1
 16x2 Liquid Crystal Display x1
 9V Relay Switch x1
Description:
1. Arduino Uno
Arduino boards are open source prototyping microcontroller platforms. The Arduino Uno is a microcontroller
board based on the ATmega328. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6
analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header, and a reset button.
It contains everything needed to support the microcontroller. The Arduino Uno has been used in this project
owing to its ease of programming.
2. Transformer 230 V to 12 V
A transformer is a static electrical device that transfers energy by inductive coupling between its winding
circuits. A varying current in the primary winding creates a varying magnetic flux through the secondary
winding. This varying magnetic flux induces a varying electromotive force (EMF) or voltage in the secondary
winding. This transformer steps down the commercially supplied voltage of 230 V to 12 V.
Intelligent Home Lighting System
56
3. Diode 1N4007
The 1N400x series is a family of popular 1 A (ampere) general purpose silicon rectifier diodes commonly used
in AC adapters for common household appliances. The blocking voltage varies from 50 to 1000 volts. This
diode is made in an axial-lead Do-41 plastic package. These diodes are used in the bridge rectifier circuit to
convert 12 V AC voltage to DC.
4. Light Dependent Resistor
The LDR, as the name suggests, is a resistor whose resistance depends on the light incident on it. Unlike
conventional resistors, the LDR is a semiconductor device of high resistance. Its resistance is inversely
proportional to the intensity of light falling on it. The LDR is the main component of the sensors used in this
project.
5. Electrolytic Capacitor
An electrolytic capacitor is a capacitor that uses an electrolyte (ionic conducting liquid) as one of its plates to
achieve a larger capacitance per unit volume than other types. All capacitors conduct alternating current and
block direct current.
6. Ceramic Capacitor
A ceramic capacitor is a fixed value capacitor in which ceramic material acts as the dielectric. It is constructed of
two or more alternating layers of ceramic and a metal layer acting as the electrodes. The composition of the
ceramic material defines the electrical behavior and therefore applications.
7. Liquid Crystal Display
The 16x2 liquid crystal display can display 16 character per line and has 2 such lines. Each character is
displayed in a 5x7 matrix. LCDs are easy to use and can display a wide range of characters. It operates on 5 V.
8. Relay Switch
A relay switch is used to switch electrical devices running on high power AC voltages using low power
electronic circuits running on low voltage DC. It is an electrical-electronic interfacing device. The switching
takes place mechanically using magnetic induction but the electrical and electronic sides are isolated from each
other. The relay used here operates on 5 V which is enough to operate it as its maximum voltage threshold is 9V.
III. WORKING
The following show the step by step realization of the circuit
Power Supply:
1. The transformer takes input from the main power supply viz. 230 V at 60 Hz and steps it down to 12 V.
The center tap is used as common ground for the entire circuit.
2. The stepped down voltage from the transformer is fed as input to the Bridge Rectifier which consists of
four 1N4007 diodes. The Rectifier Circuit converts the incoming AC voltage to DC.
3. The DC voltage is passed through a filter circuit consisting of a 1000uF electrolytic capacitor which
converts it to a constant DC voltage.
4. The treated voltage is fed to the 7805 voltage regulator and gets stepped down and stabilized at 5 V. This
5 V is used as a common rail to power all components in the circuit.
Sensor Module:
1. There are two LDR sensor modules. One module is placed outside the door frame of the room while the
other is placed inside it.
2. Each module consists of an LDR and a series resistor with +5 Vcc, ground and signal channel. The LDR
is illuminated by a light source from the opposite side of the door frame.
3. The signal channel transmits the voltage across the resistor in series with the LDR
4. When a person crosses the door frame, the light falling on the LDR gets interrupted and its resistance
increases. Hence the voltage across the series resistor decreases and the signal gets lowered.
Microcontroller:
1. The Arduino Uno controls the relay and the LCD display.
2. The input signals from the LDR sensors are fed to analog pins of the Arduino board. Since the signal is
analog, a threshold value is set to perform counting operations. Thus, the room occupancy is tracked.
Intelligent Home Lighting System
57
The count is incremented or decremented depending on the direction of change in signal from the
sensors
3. An output pin from the Arduino is connected to the relay. If the count (number of persons in the room)
reaches zero then the output goes high and the relay gets activated thus effectively cutting off power to
the room.
4. The LCD display connected to the Arduino dynamically displays the room occupancy.
Relay:
1. The relay performs the switching operation of the high voltage supply.
2. Pin A is connected to the Arduino while Pin B is grounded. The COM pin is connected to the main
power supply. The NO (normally open) is left hanging while the NC (normally closed) goes to the
subsequent power distribution circuit.
3. When the Arduino sends a High output, the relay gets activated and the COM goes from NC to NO thus
cutting off power to the room.
IV. CIRCUIT DIAGRAM
The following is the circuit diagram for the system.
Fig1: Circuit Schematic
Fig2: Actual Circuit on breadboard
Intelligent Home Lighting System
58
Fig3: Actual Circuit on PCB (printed circuit board)
Note: A general purpose PCB was used here
V. PROGRAM
Given below is the code for the Arduino Board. The code has been written in the Arduino IDE
(Integrated Development Environment). The code can be easily changed to configure the threshold input of LDR
for counting operations.
#include <LiquidCrystal.h> //LCD Header
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); //LCD interfacing pins
int sen1 = A0; //Pin assignment for sensors and Relay
int sen2 = A2;
int power= 13;
int count=0; //Counter
void setup()
{
lcd.begin(16, 2);
Serial.begin(9600); //Serial communication bitrate
pinMode(sen1, INPUT); //Analog 0 pin assigned as input
pinMode(sen2, INPUT); //Analog 2 pin assigned as input
pinMode(power, OUTPUT); //Pin 13 assigned as output
lcd.print("Number of People"); //Static print on LCD
}
void loop()
{
if(analogRead(sen1)>150) //Threshold comparison
{
delay(250);
if(analogRead(sen2)>150)
{
count++ ;
}
}
else if (analogRead(sen2)>150) //Threshold comparison
{
delay(250);
if(analogRead(sen1)>150)
Intelligent Home Lighting System
59
{
count-- ;
}
}
Serial.println(count);
lcd.setCursor(7,2); //Setting cursor on LCD
lcd.print(count); //Updating counter in LCD
if(count==0)
digitalWrite(power, HIGH); //Switching Relay
else if(count!=0)
digitalWrite(power, LOW);
delay(50);
VI. CONCLUSION
The circuit effectively reduces the power consumption by automatically switching off power. It has a
variety of practical purposes such as in classrooms, homes, and offices etc. where there is a tendency of people
forgetting to switch off lights.
ACKNOWLEDGMENT
The success and final outcome of this project required a lot of guidance and assistance form many
people.
I respectfully thank Professor Sathya P for giving an opportunity to take up this project and explore the
fascinating realm of electronic circuits.
REFERENCES
[1]. Instructables.com-
[2]. http://www.instructables.com/id/PRESENCE-SENSNSING-CURRENT-CONTROLLER/

Weitere ähnliche Inhalte

Was ist angesagt?

Automatic IN/OUT Indicator with Doorbell Manual
Automatic IN/OUT Indicator with Doorbell ManualAutomatic IN/OUT Indicator with Doorbell Manual
Automatic IN/OUT Indicator with Doorbell ManualTezpur University
 
Super sensitive intruder alarm
Super sensitive intruder alarmSuper sensitive intruder alarm
Super sensitive intruder alarmQuratulaintahir1
 
04 Arduino Peripheral Interfacing
04   Arduino Peripheral Interfacing04   Arduino Peripheral Interfacing
04 Arduino Peripheral InterfacingWingston
 
Remotely Secured Device Automation using Infrared
Remotely Secured Device Automation using InfraredRemotely Secured Device Automation using Infrared
Remotely Secured Device Automation using Infraredijsrd.com
 
TV Remote Operated Domestic Appliances Control
TV Remote Operated Domestic Appliances ControlTV Remote Operated Domestic Appliances Control
TV Remote Operated Domestic Appliances ControlEdgefxkits & Solutions
 
Remote Controlled Home Appliance
Remote Controlled Home Appliance Remote Controlled Home Appliance
Remote Controlled Home Appliance Samir Ahmed Shimul
 
Miniproject report receiver
Miniproject report receiverMiniproject report receiver
Miniproject report receiverGAURAV SINHA
 
Presentation on Electronic Eye controlled Security System
Presentation on Electronic Eye controlled Security SystemPresentation on Electronic Eye controlled Security System
Presentation on Electronic Eye controlled Security SystemSagar Magarde
 
Automatic doorbell with object detection
Automatic doorbell with object detectionAutomatic doorbell with object detection
Automatic doorbell with object detectionAnurag Alaria
 
Presentation on knock door bell project by namit
Presentation on knock door bell project by namitPresentation on knock door bell project by namit
Presentation on knock door bell project by namitNamit Sood
 
Visiter counter doc
Visiter counter docVisiter counter doc
Visiter counter docPrem Kumar
 
TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)sushil roy thalakayala
 
102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-report102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-reportisnadh
 
Electronics schematic circuits for the hobbyist
Electronics schematic circuits for the hobbyistElectronics schematic circuits for the hobbyist
Electronics schematic circuits for the hobbyistben kamau
 

Was ist angesagt? (20)

Voltage suppler..
Voltage suppler..Voltage suppler..
Voltage suppler..
 
3030
30303030
3030
 
Automatic IN/OUT Indicator with Doorbell Manual
Automatic IN/OUT Indicator with Doorbell ManualAutomatic IN/OUT Indicator with Doorbell Manual
Automatic IN/OUT Indicator with Doorbell Manual
 
Super sensitive intruder alarm
Super sensitive intruder alarmSuper sensitive intruder alarm
Super sensitive intruder alarm
 
04 Arduino Peripheral Interfacing
04   Arduino Peripheral Interfacing04   Arduino Peripheral Interfacing
04 Arduino Peripheral Interfacing
 
Remotely Secured Device Automation using Infrared
Remotely Secured Device Automation using InfraredRemotely Secured Device Automation using Infrared
Remotely Secured Device Automation using Infrared
 
TV Remote Operated Domestic Appliances Control
TV Remote Operated Domestic Appliances ControlTV Remote Operated Domestic Appliances Control
TV Remote Operated Domestic Appliances Control
 
Remote Controlled Home Appliance
Remote Controlled Home Appliance Remote Controlled Home Appliance
Remote Controlled Home Appliance
 
Miniproject report receiver
Miniproject report receiverMiniproject report receiver
Miniproject report receiver
 
Presentation on Electronic Eye controlled Security System
Presentation on Electronic Eye controlled Security SystemPresentation on Electronic Eye controlled Security System
Presentation on Electronic Eye controlled Security System
 
Automatic doorbell with object detection
Automatic doorbell with object detectionAutomatic doorbell with object detection
Automatic doorbell with object detection
 
I0425458
I0425458I0425458
I0425458
 
Presentation on knock door bell project by namit
Presentation on knock door bell project by namitPresentation on knock door bell project by namit
Presentation on knock door bell project by namit
 
K010316571
K010316571K010316571
K010316571
 
Visiter counter doc
Visiter counter docVisiter counter doc
Visiter counter doc
 
ELECTRONIC EYE FOR NIGHT DEVICE SWITCHING USING 555 TIMER
ELECTRONIC EYE FOR NIGHT DEVICE SWITCHING USING 555 TIMERELECTRONIC EYE FOR NIGHT DEVICE SWITCHING USING 555 TIMER
ELECTRONIC EYE FOR NIGHT DEVICE SWITCHING USING 555 TIMER
 
project
projectproject
project
 
TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)TV Remote control Home Appliances using Arduino(Infrared)
TV Remote control Home Appliances using Arduino(Infrared)
 
102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-report102642452 infrared-remote-switch-project-report
102642452 infrared-remote-switch-project-report
 
Electronics schematic circuits for the hobbyist
Electronics schematic circuits for the hobbyistElectronics schematic circuits for the hobbyist
Electronics schematic circuits for the hobbyist
 

Andere mochten auch

International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentIJERD Editor
 

Andere mochten auch (8)

International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
J1087181
J1087181J1087181
J1087181
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
C1081821
C1081821C1081821
C1081821
 

Ähnlich wie International Journal of Engineering Research and Development

Temperature Based Fan Controller
Temperature Based Fan Controller Temperature Based Fan Controller
Temperature Based Fan Controller richa1910n
 
372269780-Ppt-Automatic-Street-Light.ppt
372269780-Ppt-Automatic-Street-Light.ppt372269780-Ppt-Automatic-Street-Light.ppt
372269780-Ppt-Automatic-Street-Light.pptchiragdhimam4321
 
AUTOMATIC WIRELESS POWER GRID CONTROL
AUTOMATIC WIRELESS POWER GRID CONTROLAUTOMATIC WIRELESS POWER GRID CONTROL
AUTOMATIC WIRELESS POWER GRID CONTROLshiv kapil
 
speed control of three phase induction motor using IOT
speed control of three phase induction motor using IOTspeed control of three phase induction motor using IOT
speed control of three phase induction motor using IOTswaroop009
 
Fire Fighting Robot
Fire Fighting RobotFire Fighting Robot
Fire Fighting RobotSaadullah74
 
Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...
Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...
Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...Roshan Mani
 
Street light controlling using Microcontroller
Street light controlling using MicrocontrollerStreet light controlling using Microcontroller
Street light controlling using Microcontroller9989476539
 
DTMF based home automation without using Microcontroller
DTMF based home automation without using MicrocontrollerDTMF based home automation without using Microcontroller
DTMF based home automation without using Microcontrollerprasanth nani
 
Cockpit White Box
Cockpit White BoxCockpit White Box
Cockpit White Boxncct
 
Speed Control of DC motor using AT89C52 IC
Speed Control of DC motor using AT89C52 ICSpeed Control of DC motor using AT89C52 IC
Speed Control of DC motor using AT89C52 ICDisha Modi
 
Emotional Stress Indicator and Digital Thermometer-Project-8thsem
Emotional Stress Indicator and Digital Thermometer-Project-8thsemEmotional Stress Indicator and Digital Thermometer-Project-8thsem
Emotional Stress Indicator and Digital Thermometer-Project-8thsemkaushikbandopadhyay
 
Wireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsWireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsSudhanshu Tripathi
 
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTSTREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTm sivareddy
 
IRJET- Design and Development of a Programmable High Current Laser Diode ...
IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...
IRJET- Design and Development of a Programmable High Current Laser Diode ...IRJET Journal
 

Ähnlich wie International Journal of Engineering Research and Development (20)

399 ppt.pptx
399 ppt.pptx399 ppt.pptx
399 ppt.pptx
 
Temperature Based Fan Controller
Temperature Based Fan Controller Temperature Based Fan Controller
Temperature Based Fan Controller
 
372269780-Ppt-Automatic-Street-Light.ppt
372269780-Ppt-Automatic-Street-Light.ppt372269780-Ppt-Automatic-Street-Light.ppt
372269780-Ppt-Automatic-Street-Light.ppt
 
Automatic mall elevator
Automatic mall elevatorAutomatic mall elevator
Automatic mall elevator
 
AUTOMATIC WIRELESS POWER GRID CONTROL
AUTOMATIC WIRELESS POWER GRID CONTROLAUTOMATIC WIRELESS POWER GRID CONTROL
AUTOMATIC WIRELESS POWER GRID CONTROL
 
speed control of three phase induction motor using IOT
speed control of three phase induction motor using IOTspeed control of three phase induction motor using IOT
speed control of three phase induction motor using IOT
 
Fire Fighting Robot
Fire Fighting RobotFire Fighting Robot
Fire Fighting Robot
 
Project Report
Project ReportProject Report
Project Report
 
Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...
Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...
Bi-Directional Visitor Counter & Home Automation revised strictly to pattern ...
 
Final report
Final reportFinal report
Final report
 
Street light controlling using Microcontroller
Street light controlling using MicrocontrollerStreet light controlling using Microcontroller
Street light controlling using Microcontroller
 
DTMF based home automation without using Microcontroller
DTMF based home automation without using MicrocontrollerDTMF based home automation without using Microcontroller
DTMF based home automation without using Microcontroller
 
Cockpit White Box
Cockpit White BoxCockpit White Box
Cockpit White Box
 
Speed Control of DC motor using AT89C52 IC
Speed Control of DC motor using AT89C52 ICSpeed Control of DC motor using AT89C52 IC
Speed Control of DC motor using AT89C52 IC
 
Applications of Electronics
Applications of ElectronicsApplications of Electronics
Applications of Electronics
 
Emotional Stress Indicator and Digital Thermometer-Project-8thsem
Emotional Stress Indicator and Digital Thermometer-Project-8thsemEmotional Stress Indicator and Digital Thermometer-Project-8thsem
Emotional Stress Indicator and Digital Thermometer-Project-8thsem
 
Wireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsWireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensors
 
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENTSTREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
STREET LIGHT THAT GLOWS ON DETECTING VEHICLE MOVEMENT
 
Speed control of motor
Speed control of motorSpeed control of motor
Speed control of motor
 
IRJET- Design and Development of a Programmable High Current Laser Diode ...
IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...
IRJET- Design and Development of a Programmable High Current Laser Diode ...
 

Mehr von IJERD Editor

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksIJERD Editor
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEIJERD Editor
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...IJERD Editor
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’IJERD Editor
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignIJERD Editor
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationIJERD Editor
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...IJERD Editor
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRIJERD Editor
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingIJERD Editor
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string valueIJERD Editor
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...IJERD Editor
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeIJERD Editor
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...IJERD Editor
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraIJERD Editor
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...IJERD Editor
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...IJERD Editor
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingIJERD Editor
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...IJERD Editor
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart GridIJERD Editor
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderIJERD Editor
 

Mehr von IJERD Editor (20)

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACE
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding Design
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and Verification
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive Manufacturing
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string value
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF Dxing
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart Grid
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powder
 

Kürzlich hochgeladen

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 

Kürzlich hochgeladen (20)

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 

International Journal of Engineering Research and Development

  • 1. International Journal of Engineering Research and Development e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com Volume 10, Issue 6 (June 2014), PP.55-59 55 Intelligent Home Lighting System Praneet Dutta1 Ronit Rudra2 1 (VIT University,praneetdutta93@yahoo.com)2 (VIT University, ronit.rudra1995@gmail.com) Abstract:- this project has been carried out to create a sample “Intelligent Home Lighting System” which uses sensors and microcontroller interfacing in order to keep track of the number of people in a room and to automatically shut off the main power supply if the room occupancy reaches zero. Index Terms:- Arduino Uno, 7805 voltage regulator, Relay, Light Dependent Resistor, Transformer, Liquid Crystal, Serial Input. I. INTRODUCTION It is common knowledge that a majority of people forget to turn off the lighting and other electrical and electronic devices after vacating a room. This malpractice leads to the wastage of a lot of electricity and as a result, money. This project has been prototyped as a functional energy saving electronic device which will automatically cut off power to the room if the occupancy in the room is zero. Typically only the power to non- vital components, such as lights and fans, will be cut off. It is inadvisable to switch of power to vital electrical or electronic devices such as servers, active workstations, experimental equipment etc. These devices must have their power routed outside the scope of the system in question. The design of the circuit is fairly simple. The main power line to the room is diverted through the circuit before powering the electrical devices in the room. A pair of Light Dependent Resistors keep track of the number of people in the room and their output signal is fed to the Arduino board through Serial Analog input channels. The Arduino board also controls the relay switch which cuts off power to the room accordingly. A Liquid Crystal Display interfaced with the Arduino Board dynamically displays the number of people in the room. II. COMPONENTS REQUIRED The following components have been used for this project:  Arduino Uno x1  Transformer 230 to 12 Volt x1  Diode 1N4007 x4  Light Dependent Resistor x2  Electrolytic Capacitor 1000uF/35V x1  Ceramic Capacitor 0.1uF x1  Carbon Resistor 1K ohm x2  Potentiometer 10K ohm x1  16x2 Liquid Crystal Display x1  9V Relay Switch x1 Description: 1. Arduino Uno Arduino boards are open source prototyping microcontroller platforms. The Arduino Uno is a microcontroller board based on the ATmega328. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header, and a reset button. It contains everything needed to support the microcontroller. The Arduino Uno has been used in this project owing to its ease of programming. 2. Transformer 230 V to 12 V A transformer is a static electrical device that transfers energy by inductive coupling between its winding circuits. A varying current in the primary winding creates a varying magnetic flux through the secondary winding. This varying magnetic flux induces a varying electromotive force (EMF) or voltage in the secondary winding. This transformer steps down the commercially supplied voltage of 230 V to 12 V.
  • 2. Intelligent Home Lighting System 56 3. Diode 1N4007 The 1N400x series is a family of popular 1 A (ampere) general purpose silicon rectifier diodes commonly used in AC adapters for common household appliances. The blocking voltage varies from 50 to 1000 volts. This diode is made in an axial-lead Do-41 plastic package. These diodes are used in the bridge rectifier circuit to convert 12 V AC voltage to DC. 4. Light Dependent Resistor The LDR, as the name suggests, is a resistor whose resistance depends on the light incident on it. Unlike conventional resistors, the LDR is a semiconductor device of high resistance. Its resistance is inversely proportional to the intensity of light falling on it. The LDR is the main component of the sensors used in this project. 5. Electrolytic Capacitor An electrolytic capacitor is a capacitor that uses an electrolyte (ionic conducting liquid) as one of its plates to achieve a larger capacitance per unit volume than other types. All capacitors conduct alternating current and block direct current. 6. Ceramic Capacitor A ceramic capacitor is a fixed value capacitor in which ceramic material acts as the dielectric. It is constructed of two or more alternating layers of ceramic and a metal layer acting as the electrodes. The composition of the ceramic material defines the electrical behavior and therefore applications. 7. Liquid Crystal Display The 16x2 liquid crystal display can display 16 character per line and has 2 such lines. Each character is displayed in a 5x7 matrix. LCDs are easy to use and can display a wide range of characters. It operates on 5 V. 8. Relay Switch A relay switch is used to switch electrical devices running on high power AC voltages using low power electronic circuits running on low voltage DC. It is an electrical-electronic interfacing device. The switching takes place mechanically using magnetic induction but the electrical and electronic sides are isolated from each other. The relay used here operates on 5 V which is enough to operate it as its maximum voltage threshold is 9V. III. WORKING The following show the step by step realization of the circuit Power Supply: 1. The transformer takes input from the main power supply viz. 230 V at 60 Hz and steps it down to 12 V. The center tap is used as common ground for the entire circuit. 2. The stepped down voltage from the transformer is fed as input to the Bridge Rectifier which consists of four 1N4007 diodes. The Rectifier Circuit converts the incoming AC voltage to DC. 3. The DC voltage is passed through a filter circuit consisting of a 1000uF electrolytic capacitor which converts it to a constant DC voltage. 4. The treated voltage is fed to the 7805 voltage regulator and gets stepped down and stabilized at 5 V. This 5 V is used as a common rail to power all components in the circuit. Sensor Module: 1. There are two LDR sensor modules. One module is placed outside the door frame of the room while the other is placed inside it. 2. Each module consists of an LDR and a series resistor with +5 Vcc, ground and signal channel. The LDR is illuminated by a light source from the opposite side of the door frame. 3. The signal channel transmits the voltage across the resistor in series with the LDR 4. When a person crosses the door frame, the light falling on the LDR gets interrupted and its resistance increases. Hence the voltage across the series resistor decreases and the signal gets lowered. Microcontroller: 1. The Arduino Uno controls the relay and the LCD display. 2. The input signals from the LDR sensors are fed to analog pins of the Arduino board. Since the signal is analog, a threshold value is set to perform counting operations. Thus, the room occupancy is tracked.
  • 3. Intelligent Home Lighting System 57 The count is incremented or decremented depending on the direction of change in signal from the sensors 3. An output pin from the Arduino is connected to the relay. If the count (number of persons in the room) reaches zero then the output goes high and the relay gets activated thus effectively cutting off power to the room. 4. The LCD display connected to the Arduino dynamically displays the room occupancy. Relay: 1. The relay performs the switching operation of the high voltage supply. 2. Pin A is connected to the Arduino while Pin B is grounded. The COM pin is connected to the main power supply. The NO (normally open) is left hanging while the NC (normally closed) goes to the subsequent power distribution circuit. 3. When the Arduino sends a High output, the relay gets activated and the COM goes from NC to NO thus cutting off power to the room. IV. CIRCUIT DIAGRAM The following is the circuit diagram for the system. Fig1: Circuit Schematic Fig2: Actual Circuit on breadboard
  • 4. Intelligent Home Lighting System 58 Fig3: Actual Circuit on PCB (printed circuit board) Note: A general purpose PCB was used here V. PROGRAM Given below is the code for the Arduino Board. The code has been written in the Arduino IDE (Integrated Development Environment). The code can be easily changed to configure the threshold input of LDR for counting operations. #include <LiquidCrystal.h> //LCD Header LiquidCrystal lcd(12, 11, 5, 4, 3, 2); //LCD interfacing pins int sen1 = A0; //Pin assignment for sensors and Relay int sen2 = A2; int power= 13; int count=0; //Counter void setup() { lcd.begin(16, 2); Serial.begin(9600); //Serial communication bitrate pinMode(sen1, INPUT); //Analog 0 pin assigned as input pinMode(sen2, INPUT); //Analog 2 pin assigned as input pinMode(power, OUTPUT); //Pin 13 assigned as output lcd.print("Number of People"); //Static print on LCD } void loop() { if(analogRead(sen1)>150) //Threshold comparison { delay(250); if(analogRead(sen2)>150) { count++ ; } } else if (analogRead(sen2)>150) //Threshold comparison { delay(250); if(analogRead(sen1)>150)
  • 5. Intelligent Home Lighting System 59 { count-- ; } } Serial.println(count); lcd.setCursor(7,2); //Setting cursor on LCD lcd.print(count); //Updating counter in LCD if(count==0) digitalWrite(power, HIGH); //Switching Relay else if(count!=0) digitalWrite(power, LOW); delay(50); VI. CONCLUSION The circuit effectively reduces the power consumption by automatically switching off power. It has a variety of practical purposes such as in classrooms, homes, and offices etc. where there is a tendency of people forgetting to switch off lights. ACKNOWLEDGMENT The success and final outcome of this project required a lot of guidance and assistance form many people. I respectfully thank Professor Sathya P for giving an opportunity to take up this project and explore the fascinating realm of electronic circuits. REFERENCES [1]. Instructables.com- [2]. http://www.instructables.com/id/PRESENCE-SENSNSING-CURRENT-CONTROLLER/