Sensors Final Report PDF
Sensors Final Report PDF
Instrumentation
Visitor Counting
Project
“VISITOR COUNTING PROJECT”
PROJECT REPORT
Submitted for the course- Sensors and Instrumentation
(ECE1005)
By
(Name of the Students with Registration Numbers)
AKSHAT MATHUR 18BEC0880
PRANAV CHAUDHARY 18BEC0902
PRAKHAR SHUKLA 18BEC0903
SLOT: TB1
CERTIFICATE
This is to certify that the project work entitled “Visitor Counting” that
is being submitted by a group of three candidates for Sensors and
Instrumentation (ECE1005) is a record of bonafide work done under
my supervision. The Contents of this Project work, in full or in parts,
have neither been taken from any other source nor have been submitted
for any other CAL course.
Place: Vellore
Signature of Students:
AKSHAT MATHUR
PRANAV CHAUDHARY
PRAKHAR SHUKLA
ACKNOWLEDGEMENTS
This report would not have been possible without the essential
And gracious support of Mr. MUTHU RAJA S sir. His
willingness to motivate us contributed tremendously to our report.
We also would like to thank him for showing us some examples
related to the topic of report. He encouraged all of us even when we
had any sort of obstacles or difficulties and guided through it. It
couldn’t be possible without him. He inspired us and gave thoughtful
ideas and innovative hints which paid dividends to our project.
Besides we would like to thank the authority of VIT UNIVERSITY for
providing us the good environment and facilities to complete this
report. Also, we would like to thank them for offering this subject. It
gave us an opportunity to participate and learn which could be fruitful
for our future and carrier. Finally, we would like to thank our family
and friends for their support and understanding towards our project as
without their help we couldn’t even possibly have had been able to
finish our assignment.
AKSHAT MATHUR
PRANAV CHAUDHARY
PRAKHAR SHUKLA
ABSTRACT
This is a project developed with a sense of all-round security of
a living area. The “Visitor Counting and room light and fan
controlling” model includes all those essential components that
can sense the presence of any living being (human or animals)
in a compartment. It is an Arduino controlled circuit which uses
IR sensor modules to detect the existence of any individual and
counts the frequency of the human beings.
We will be using IR sensor modules (emits IR to sense some
aspects of the surroundings). Infrared waves are not visible to
the human eye. In the electromagnetic spectrum, infrared
radiation can be found between the visible and microwave
regions. The infrared waves typically have wavelengths
between 0.75 and 1000µm.
AIM
To make a smart room sensor which uses a sensor
module and displays the count of the people in the
room.
MATERIALS REQUIRED
ABOUT COMPONENTS:
THE BRAIN OF THE PROJECT- ARDUINO
SENSOR MODULE:
An infrared sensor is an electronic device that emits in order to sense some aspects
of the surroundings. An IR sensor can measure the heat of an object as well as
detects the motion. The radiations are invisible to our eyes, which can be detected
by an infrared sensor. The emitter is an IR LED (Light Emitting Diode) and the
detector is an IR photodiode which is sensitive to IR light of the same wavelength
as that emitted by the IR LED.
CODE:
#include<LiquidCrystal.h>
LiquidCrystal lcd(2,3,4,5,6,7);
#define in 8
#define out 9
#define Buzzer 10
int count=0;
void setup()
{
lcd.begin(16,2);
lcd.print("Welcome to Event");
delay(2000);
pinMode(in, INPUT);
pinMode(out, INPUT);
pinMode(Buzzer, OUTPUT);
lcd.clear();
lcd.print("Person In Audi.:");
lcd.setCursor(0,1);
lcd.print(count);
}
void loop()
{
int in_value = digitalRead(in);
int out_value = digitalRead(out);
if(in_value == LOW)
{
count++;
lcd.clear();
lcd.print("Person In Audi.");
lcd.setCursor(0,1);
lcd.print(count);
delay(1000);
if(out_value == LOW)
{
void setup()
{
pinMode(7,OUTPUT);
lcd.begin(16,2);
lcd.print("Visitor
Counter"); delay(2000);
pinMode(in, INPUT);
pinMode(out, INPUT);
pinMode(relay,
OUTPUT); lcd.clear();
lcd.print("Person In Room:");
lcd.setCursor(0,1); lcd.print(count);
}
void loop()
{
if(digitalRead(in))
IN();
if(digitalRead(out))
OUT();
if(count<=0)
{
lcd.clear();
digitalWrite(relay, LOW);
lcd.clear();
lcd.print("Nobody In Room");
lcd.setCursor(0,1);
lcd.print("Light Is Off");
delay(200);
digitalWrite(7,LOW);
}
else{ digitalWrite(relay,
HIGH);
digitalWrite(7,HIGH);
} }
DESIGN DETAILS:
WORKING OF IR SENSOR:
• The IR sensor continuously senses the presence of any obstacles.
• If sensor 1 senses the person it informs controller that a person has entered
so that controller can increment the count. At the same time it gives a delay,
so that the person can cross the sensor 2 and the count maintained correctly.
• When a person exits the sensor 2 informs the controller to decrement the
count. Similarly it also provides a delay to maintain count properly.
• The count is displayed on the LCD by the controller.
CIRCUIT DIAGRAM:
APPLICATIONS AND ADVANTAGES
1. Can be used in various rooms like seminar hall, where the capacity of
room is limited and should not be exceeded. Project will display the
actual number of persons inside the room.
2. Can be used in conference room, study rooms in colleges.
FUTURE DEVELOPMENT
1. We can send this data to a remote location using mobile or internet
2. Voice alarm system can be added to indicate that room is full & persons
can’t enter inside
REFERENCES:
1. https://circuitdigest.com/
2. https://www.arduino.cc/
3. http://www.gadgetronicx.com/visitor-counter-project-using-arduino/
4. https://www.wikipedia.org/
5. http://www.electronicshub.org/