SlideShare a Scribd company logo
1 of 17
Automatic room light controller with bi-
directional visitor counter using Arduino uno
Presented By ,
Mr. Prasenjit Chandrakant More
INTRODUCTION
• Project title is “ Automatic Room light ControllerWith Bi-DirectionalVisitor Counter Using Arduino Uno ” .
• Electricity is one of the most important resources in this century.We should conserve the electricity. But
Many times we come out side the room / hall and forget to turn off lights/fan, thus the electricity is wasted.
• To overcome this we are going to implement a project called “ Automatic Room light Controller with visitor
counter ” .This project has two modules, first modules is “visitor counter ” and second is “ Automatic room
light controller ”.
• Main concept behind this project is to measure and display the number of persons entering in any room like
seminar hall , conference room and when number of persons inside the room is zero m power supply inside
the room can be cut using a relay interface.
• This will help to save electricity , LCD display placed out side the room display number of person inside the
room.
BLOCK DIAGRAM
A
R
D
U
I
N
O
U
N
O
SUPPLY
RECEIVER
1
RECEIVER
2
TRANSMITTER
1
TRANSMITTER
2
RELAY
LOAD
L C D
COMPONENTS USED IN PROJECT
• I R Sensor
• Arduino Uno Board
• Relay
• Load ( lamp )
• LCD Display
• Jumper Cables
• Power Supply
CIRCUIT DIAGRAM
CIRCUIT DIAGRAM EXPLAINATION
• Sensor Section
In this section we have used two IR sensor modules . Here in this circuit we have used two comparators for two
sensors. LM358 is used as comparator . LM 358 has in built two low noise Op-amp.
• Control Section
Arduino UNO is used for controlling whole the process of this visitor counter project. The out puts comparators are
connected to digital pins of Arduino
• Display Section
Display section contains a 16*2 LCD . This section will display the counted number of people and light status when
no one will in the room.
• Relay Driver Section
Relay driver section consist a BC547 transistor and 5volt relay for controlling the load . Arduino sends commands to
this relay driver transistor and then light bulb ( load ) will turn on/off accordingly .
SYSTEM IMPLEMENTATION AND TESTING
Testing is a vital process in the development and realization of any design, be it hardware based, software
based or both. The various components and their circuitry have to be tested to ensure that all the
components on board are certified okay and in good working condition. The components that did not give
the required output specification where isolated and troubleshoot to determine the nature and cause of the
component failure through careful analysis, that is examination of the working principles of the
component(s).
• Display testing
When a program to show ‘hello, world !’ is burnt into the arduino, the display shows the sentence. The
following figure shows the display test.
• IR Sensor testing
This section we test the sensor implementation by using an obstacle.
• Testing Relay
Here we did testing of relay before put into use in system.
SYSTEM IMPLEMENTATION code
&
code explanation
#include<LiquidCrystal.h>
Liquid Crystal lcd(13,12,11,10,9,8);
int In = 4;
int Out = 5;
int relay = 2;
int count=0;
The pins for LCD are
from 8 to 13. Input
pin is at 4 output pin
is at 5 and relay is
connected at pin 2.
void setup()
{
lcd.begin(16,2);
lcd.print("Visitor’s Counter");
delay(2000);
pinMode(In, INPUT);
pinMode(Out, INPUT);
pinMode(relay, OUTPUT);
lcd.clear();
lcd.print("Person In Room:");
Serial.begin(9600);
A loop is created which is
used for initialization of the
LCD setup. At the beginning
of the program the LCD will
display a message of
“Visitor Counter”.
void loop()
{
if (digitalRead(In) == LOW){
count++;
}
else if (digitalRead(Out) == LOW){
count--;
}
else if (count > 0)
{
digitalWrite(relay, HIGH);
}
else if(count <= 0){
digitalWrite(relay, LOW);
}
lcd.setCursor(0,1);
lcd.print(count);
Serial.println(count);
delay(700);
}
In loop function we read
sensors input and increment
or decrement the counting
depending upon enter or
exit operation.
RESULT
• There are two transmitters and two receiver
placed in front of each other. Swap any object
(like mobile) or your fingers in front of those
sensors. Then microcontroller increments or
decrements the counter. Ones the count is
nonzero, the room lights turned on using relay
and turned on fan. Now swap object in reverse
direction then the system decrements the count.
And room light turned off and the count
becomes zero.
ADVANTAGES
 Main advantage of this project is that it helps in energy conservation. Because when there is nobody
inside the room then lights are automatically turned off.
 Since this project does the automatic person counting with the help of two sensors installed on door
frame it also reduces the additional work of employee to count the persons .
 Low cost because human-based data collection comes with great expense .
 Also, there is no hazardous elements used in the circuit and hence it can be used even at hazardous
atmospheres in an industrial area.
DISADVANTAGE / DRAWBACKS
It is used only when one person cuts the rays of the sensor hence, cannot be used when two or more
persons cross the door simultaneously or a crowd entering or leaving can’t be counted by this system .
The only person who can communicate with the control module is the person who is in the receptionist
or security unit.
APPLICATION
 It can be used in various rooms like seminar halls , where the capacity of the room is limited and
should not be exceeded.
 It can be used in our homes because we often forget to switch off our room lights
 It helps in energy conservation
 Voice alarm system can be used to indicate that room is full & person can’t enter inside
FUTURE DEVELOPMENT
• We can send this data to a remote location using mobile or internet
• Voice alarm system can be added to indicate that room is full and persons
can’t enter inside.
REFERENCES
• G. Smith, Introduction to Arduino, September 30, 2011
• T. S. Jayadev, Infrared sensors: detectors, electronics, and signal processing, Society of Photo-optical
Instrumentation Engineers 24th july 1999
• http://circuitdigest.com/microcontroller-projects/automatic-room-light-controller-with-bidirectional-
visitor-counter-using-arduino
• https://www.elprocus.com/know-about-working-of-automatic-room-light-controller-and-applications/
• http://www.engineersgarage.com/tutorials/555-timer-ic-introduction-basics-working- different-
operating-modes
• http://www.ti.com/product/LM358

More Related Content

What's hot

A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Abhishekvb
 
Electronic Bicycle Lock Mini Project Analog Electronics
Electronic Bicycle Lock Mini Project Analog ElectronicsElectronic Bicycle Lock Mini Project Analog Electronics
Electronic Bicycle Lock Mini Project Analog ElectronicsOmkar Rane
 
Automatic room light controller with visible counter
Automatic room light controller with visible counterAutomatic room light controller with visible counter
Automatic room light controller with visible counterMafaz Ahmed
 
Automatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR SensorAutomatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR SensorAnkit Chaudhary
 
Arduino based automatic temperature controlled fan speed regulator
Arduino based automatic temperature controlled fan speed regulatorArduino based automatic temperature controlled fan speed regulator
Arduino based automatic temperature controlled fan speed regulatorEdgefxkits & Solutions
 
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Abhishekvb
 
Bluetooth based Home Automation
Bluetooth based Home AutomationBluetooth based Home Automation
Bluetooth based Home AutomationJagannath Kartik
 
Auto Room Lighting System
Auto Room Lighting SystemAuto Room Lighting System
Auto Room Lighting SystemBUBT
 
Automatic Street Light Controller Using Arduino
Automatic Street Light Controller Using ArduinoAutomatic Street Light Controller Using Arduino
Automatic Street Light Controller Using Arduinosachin achari
 
AUTOMATIC RAILWAY GATE CONTROL SYSTEM
AUTOMATIC RAILWAY GATE CONTROL SYSTEMAUTOMATIC RAILWAY GATE CONTROL SYSTEM
AUTOMATIC RAILWAY GATE CONTROL SYSTEMJOLLUSUDARSHANREDDY
 
Project report on bidirectional visitor counter & home automation
Project report on bidirectional visitor counter & home automationProject report on bidirectional visitor counter & home automation
Project report on bidirectional visitor counter & home automationRoshan Mani
 
automatic streetlight control using ldr ppt
automatic streetlight control using ldr pptautomatic streetlight control using ldr ppt
automatic streetlight control using ldr pptanand kumar maurya
 
Bidirectional visitor counter
Bidirectional visitor counterBidirectional visitor counter
Bidirectional visitor counterZakir Gulzar
 
Automatic room light controller with password detection system
Automatic room light controller with password detection systemAutomatic room light controller with password detection system
Automatic room light controller with password detection systemshubham jha
 
Automatic Streetlight
Automatic StreetlightAutomatic Streetlight
Automatic StreetlightRejvi Ahmed
 
Traffic light controller
Traffic light controllerTraffic light controller
Traffic light controllernimmi_abes
 
Bi directional visitor counter rewat
Bi directional visitor counter   rewatBi directional visitor counter   rewat
Bi directional visitor counter rewatvishwesh sharma
 
Ppt on automatic street light control using ir sensors
Ppt on automatic street light control using ir sensorsPpt on automatic street light control using ir sensors
Ppt on automatic street light control using ir sensorsVikram Emmidi
 

What's hot (20)

A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
 
Electronic Bicycle Lock Mini Project Analog Electronics
Electronic Bicycle Lock Mini Project Analog ElectronicsElectronic Bicycle Lock Mini Project Analog Electronics
Electronic Bicycle Lock Mini Project Analog Electronics
 
Automatic room light controller with visible counter
Automatic room light controller with visible counterAutomatic room light controller with visible counter
Automatic room light controller with visible counter
 
Automatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR SensorAutomatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR Sensor
 
Arduino based automatic temperature controlled fan speed regulator
Arduino based automatic temperature controlled fan speed regulatorArduino based automatic temperature controlled fan speed regulator
Arduino based automatic temperature controlled fan speed regulator
 
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
 
Bluetooth based Home Automation
Bluetooth based Home AutomationBluetooth based Home Automation
Bluetooth based Home Automation
 
Auto Room Lighting System
Auto Room Lighting SystemAuto Room Lighting System
Auto Room Lighting System
 
Automatic Street Light Controller Using Arduino
Automatic Street Light Controller Using ArduinoAutomatic Street Light Controller Using Arduino
Automatic Street Light Controller Using Arduino
 
AUTOMATIC RAILWAY GATE CONTROL SYSTEM
AUTOMATIC RAILWAY GATE CONTROL SYSTEMAUTOMATIC RAILWAY GATE CONTROL SYSTEM
AUTOMATIC RAILWAY GATE CONTROL SYSTEM
 
Project report on bidirectional visitor counter & home automation
Project report on bidirectional visitor counter & home automationProject report on bidirectional visitor counter & home automation
Project report on bidirectional visitor counter & home automation
 
automatic streetlight control using ldr ppt
automatic streetlight control using ldr pptautomatic streetlight control using ldr ppt
automatic streetlight control using ldr ppt
 
Bidirectional visitor counter
Bidirectional visitor counterBidirectional visitor counter
Bidirectional visitor counter
 
Automatic room light controller with password detection system
Automatic room light controller with password detection systemAutomatic room light controller with password detection system
Automatic room light controller with password detection system
 
Smoke Detection System
Smoke Detection SystemSmoke Detection System
Smoke Detection System
 
Automatic Streetlight
Automatic StreetlightAutomatic Streetlight
Automatic Streetlight
 
Traffic light controller
Traffic light controllerTraffic light controller
Traffic light controller
 
Bi directional visitor counter rewat
Bi directional visitor counter   rewatBi directional visitor counter   rewat
Bi directional visitor counter rewat
 
Password Base Door Lock
Password Base Door LockPassword Base Door Lock
Password Base Door Lock
 
Ppt on automatic street light control using ir sensors
Ppt on automatic street light control using ir sensorsPpt on automatic street light control using ir sensors
Ppt on automatic street light control using ir sensors
 

Similar to Automatic room light controller with bi directional visitor counter using Arduino uno

summer training report (2)
summer training report (2)summer training report (2)
summer training report (2)Kavya Gupta
 
Auto Room Lighting and Door lock Report
Auto Room Lighting and Door lock ReportAuto Room Lighting and Door lock Report
Auto Room Lighting and Door lock ReportBUBT
 
Tinkercad Workshop PPT, Dept. of ECE.pptx
Tinkercad Workshop PPT, Dept. of ECE.pptxTinkercad Workshop PPT, Dept. of ECE.pptx
Tinkercad Workshop PPT, Dept. of ECE.pptxJayashreeSelvam5
 
Automatic_room_light_controller_ PPT.pptx
Automatic_room_light_controller_ PPT.pptxAutomatic_room_light_controller_ PPT.pptx
Automatic_room_light_controller_ PPT.pptxSwarajDhumal
 
Energy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counterEnergy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counterIRJET Journal
 
Doorlock
DoorlockDoorlock
DoorlockBUBT
 
weather monitoiring system.pptx
weather monitoiring system.pptxweather monitoiring system.pptx
weather monitoiring system.pptxPranayBathini1
 
Automatic room lighting system
Automatic room lighting systemAutomatic room lighting system
Automatic room lighting systemPoojithaAV
 
Report on Embedded Based Home security system
Report on Embedded Based Home security systemReport on Embedded Based Home security system
Report on Embedded Based Home security systemNIT srinagar
 
Password based door locking system
Password based door locking systemPassword based door locking system
Password based door locking systemArjun Singh
 
Arduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemArduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemMadhav Reddy Chintapalli
 
Report (Electromagnetic Password Door Lock System)
Report (Electromagnetic Password Door Lock System)Report (Electromagnetic Password Door Lock System)
Report (Electromagnetic Password Door Lock System)Siang Wei Lee
 
IRJET- Static Analysis of the Roll Cage of All-Terrain Vehicle
IRJET- Static Analysis of the Roll Cage of All-Terrain VehicleIRJET- Static Analysis of the Roll Cage of All-Terrain Vehicle
IRJET- Static Analysis of the Roll Cage of All-Terrain VehicleIRJET Journal
 
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEMAUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEMBiprajitSarkar
 

Similar to Automatic room light controller with bi directional visitor counter using Arduino uno (20)

Minor_project.ppt.pdf
Minor_project.ppt.pdfMinor_project.ppt.pdf
Minor_project.ppt.pdf
 
Deepak
DeepakDeepak
Deepak
 
summer training report (2)
summer training report (2)summer training report (2)
summer training report (2)
 
Auto Room Lighting and Door lock Report
Auto Room Lighting and Door lock ReportAuto Room Lighting and Door lock Report
Auto Room Lighting and Door lock Report
 
Tinkercad Workshop PPT, Dept. of ECE.pptx
Tinkercad Workshop PPT, Dept. of ECE.pptxTinkercad Workshop PPT, Dept. of ECE.pptx
Tinkercad Workshop PPT, Dept. of ECE.pptx
 
Automatic_room_light_controller_ PPT.pptx
Automatic_room_light_controller_ PPT.pptxAutomatic_room_light_controller_ PPT.pptx
Automatic_room_light_controller_ PPT.pptx
 
Energy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counterEnergy Conservation Bidirectional visitor counter
Energy Conservation Bidirectional visitor counter
 
Doorlock
DoorlockDoorlock
Doorlock
 
weather monitoiring system.pptx
weather monitoiring system.pptxweather monitoiring system.pptx
weather monitoiring system.pptx
 
Automatic room lighting system
Automatic room lighting systemAutomatic room lighting system
Automatic room lighting system
 
Report on Embedded Based Home security system
Report on Embedded Based Home security systemReport on Embedded Based Home security system
Report on Embedded Based Home security system
 
Design and Implementation of smart office management system
Design and Implementation of smart office management systemDesign and Implementation of smart office management system
Design and Implementation of smart office management system
 
EESS.pptx
EESS.pptxEESS.pptx
EESS.pptx
 
Password based door locking system
Password based door locking systemPassword based door locking system
Password based door locking system
 
Arduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemArduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning System
 
Pr391
Pr391Pr391
Pr391
 
Report (Electromagnetic Password Door Lock System)
Report (Electromagnetic Password Door Lock System)Report (Electromagnetic Password Door Lock System)
Report (Electromagnetic Password Door Lock System)
 
IRJET- Static Analysis of the Roll Cage of All-Terrain Vehicle
IRJET- Static Analysis of the Roll Cage of All-Terrain VehicleIRJET- Static Analysis of the Roll Cage of All-Terrain Vehicle
IRJET- Static Analysis of the Roll Cage of All-Terrain Vehicle
 
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEMAUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
 
Embedded systems presentation
Embedded systems presentationEmbedded systems presentation
Embedded systems presentation
 

Recently uploaded

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 

Recently uploaded (20)

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 

Automatic room light controller with bi directional visitor counter using Arduino uno

  • 1. Automatic room light controller with bi- directional visitor counter using Arduino uno Presented By , Mr. Prasenjit Chandrakant More
  • 2. INTRODUCTION • Project title is “ Automatic Room light ControllerWith Bi-DirectionalVisitor Counter Using Arduino Uno ” . • Electricity is one of the most important resources in this century.We should conserve the electricity. But Many times we come out side the room / hall and forget to turn off lights/fan, thus the electricity is wasted. • To overcome this we are going to implement a project called “ Automatic Room light Controller with visitor counter ” .This project has two modules, first modules is “visitor counter ” and second is “ Automatic room light controller ”. • Main concept behind this project is to measure and display the number of persons entering in any room like seminar hall , conference room and when number of persons inside the room is zero m power supply inside the room can be cut using a relay interface. • This will help to save electricity , LCD display placed out side the room display number of person inside the room.
  • 4. COMPONENTS USED IN PROJECT • I R Sensor • Arduino Uno Board • Relay • Load ( lamp ) • LCD Display • Jumper Cables • Power Supply
  • 6. CIRCUIT DIAGRAM EXPLAINATION • Sensor Section In this section we have used two IR sensor modules . Here in this circuit we have used two comparators for two sensors. LM358 is used as comparator . LM 358 has in built two low noise Op-amp. • Control Section Arduino UNO is used for controlling whole the process of this visitor counter project. The out puts comparators are connected to digital pins of Arduino • Display Section Display section contains a 16*2 LCD . This section will display the counted number of people and light status when no one will in the room. • Relay Driver Section Relay driver section consist a BC547 transistor and 5volt relay for controlling the load . Arduino sends commands to this relay driver transistor and then light bulb ( load ) will turn on/off accordingly .
  • 7. SYSTEM IMPLEMENTATION AND TESTING Testing is a vital process in the development and realization of any design, be it hardware based, software based or both. The various components and their circuitry have to be tested to ensure that all the components on board are certified okay and in good working condition. The components that did not give the required output specification where isolated and troubleshoot to determine the nature and cause of the component failure through careful analysis, that is examination of the working principles of the component(s). • Display testing When a program to show ‘hello, world !’ is burnt into the arduino, the display shows the sentence. The following figure shows the display test.
  • 8. • IR Sensor testing This section we test the sensor implementation by using an obstacle. • Testing Relay Here we did testing of relay before put into use in system.
  • 9. SYSTEM IMPLEMENTATION code & code explanation #include<LiquidCrystal.h> Liquid Crystal lcd(13,12,11,10,9,8); int In = 4; int Out = 5; int relay = 2; int count=0; The pins for LCD are from 8 to 13. Input pin is at 4 output pin is at 5 and relay is connected at pin 2.
  • 10. void setup() { lcd.begin(16,2); lcd.print("Visitor’s Counter"); delay(2000); pinMode(In, INPUT); pinMode(Out, INPUT); pinMode(relay, OUTPUT); lcd.clear(); lcd.print("Person In Room:"); Serial.begin(9600); A loop is created which is used for initialization of the LCD setup. At the beginning of the program the LCD will display a message of “Visitor Counter”.
  • 11. void loop() { if (digitalRead(In) == LOW){ count++; } else if (digitalRead(Out) == LOW){ count--; } else if (count > 0) { digitalWrite(relay, HIGH); } else if(count <= 0){ digitalWrite(relay, LOW); } lcd.setCursor(0,1); lcd.print(count); Serial.println(count); delay(700); } In loop function we read sensors input and increment or decrement the counting depending upon enter or exit operation.
  • 12. RESULT • There are two transmitters and two receiver placed in front of each other. Swap any object (like mobile) or your fingers in front of those sensors. Then microcontroller increments or decrements the counter. Ones the count is nonzero, the room lights turned on using relay and turned on fan. Now swap object in reverse direction then the system decrements the count. And room light turned off and the count becomes zero.
  • 13. ADVANTAGES  Main advantage of this project is that it helps in energy conservation. Because when there is nobody inside the room then lights are automatically turned off.  Since this project does the automatic person counting with the help of two sensors installed on door frame it also reduces the additional work of employee to count the persons .  Low cost because human-based data collection comes with great expense .  Also, there is no hazardous elements used in the circuit and hence it can be used even at hazardous atmospheres in an industrial area.
  • 14. DISADVANTAGE / DRAWBACKS It is used only when one person cuts the rays of the sensor hence, cannot be used when two or more persons cross the door simultaneously or a crowd entering or leaving can’t be counted by this system . The only person who can communicate with the control module is the person who is in the receptionist or security unit.
  • 15. APPLICATION  It can be used in various rooms like seminar halls , where the capacity of the room is limited and should not be exceeded.  It can be used in our homes because we often forget to switch off our room lights  It helps in energy conservation  Voice alarm system can be used to indicate that room is full & person can’t enter inside
  • 16. FUTURE DEVELOPMENT • We can send this data to a remote location using mobile or internet • Voice alarm system can be added to indicate that room is full and persons can’t enter inside.
  • 17. REFERENCES • G. Smith, Introduction to Arduino, September 30, 2011 • T. S. Jayadev, Infrared sensors: detectors, electronics, and signal processing, Society of Photo-optical Instrumentation Engineers 24th july 1999 • http://circuitdigest.com/microcontroller-projects/automatic-room-light-controller-with-bidirectional- visitor-counter-using-arduino • https://www.elprocus.com/know-about-working-of-automatic-room-light-controller-and-applications/ • http://www.engineersgarage.com/tutorials/555-timer-ic-introduction-basics-working- different- operating-modes • http://www.ti.com/product/LM358