Visitor Counter Using Arduino
by vinaybhogal1518 in Circuits > Arduino
1108 Views, 2 Favorites, 0 Comments
Visitor Counter Using Arduino
It's my first instructable. I'm sorry if I missed something.
Project :
A Visitor Counter is a system made for managing rooms/places
efficiently. This system consist of an Arduino(controller) which will process the information. Infrared sensors which gives input as entry/exit to the controller. Relay module which acts as a switch for lights and a display which will show status/information outside the room.
This system is able to keep the count of people inside room. If anyone enters room, lights will be turned on. If everyone leaves the room, lights will be turned off. This system not just only counts how many people entered, but also how many people exited the room. So, we get correct information. The display outside room will show the count of people, notification if room is full and Light status as on/off.
Supplies
- Arduino Uno
- Infrared sensor(IR sensor)
- 16X2 LCD Display
- Relay Module
- Breadboard
- Jumper wires
- LED
- 10k Pot
Connections
Connect all devices as shown in the diagram using jumper wires.
Coding
First download LiquidCrystal library from Here.
Open Arduino IDE software and Sketch-> include library -> add .zip library.
Browse and select the downloaded liquid crystal library.
Add the given code to sketch and upload.