"Rfid Door Lock Control System": Visvesvaraya Technological University
"Rfid Door Lock Control System": Visvesvaraya Technological University
"Rfid Door Lock Control System": Visvesvaraya Technological University
A Project report on
Submitted for partial fulfillment of the requirements for the award of degree of
BACHELOR OF ENGINEERING
IN
ELECTRONICS AND COMMUNICATION ENGINEERING
Submitted by:
1.MOHAMMED SHAHID KURUGOD - 3PG19EC012
2.VEVINA STANLEY -3PG19EC023
3.MOHAMMED AHAD -3PG18EC012
CERTIFICATE
The is to certify that the technical seminar report on the current topic entitled
“RFID DOOR LOCK CONTROL SYSTEM” has been successfully carried
out by MOHAMMED SHAHID KURUGOD (3PG19EC012) , VEVINA
STANLEY (3PG19EC023) and MOHAMMED AHAD (3PG18EC012) in
partial fulfilment for the award of bachelor of engineering in ECE of the VTU
BELAGAV during the academic year 2021-2022.The Mini Project report has
been approved ,as it satisfies the academic requirements in respect of technical
seminar on current topic prescribed for B . E Degree.
Signature of Co-ordinator
Prof. Kiran V P
External Exam:
1.Examiner 1:
2.Examiner 2:
Institute Mission:
MI3: Inculcate human values and ethics to make learners sensitive towards social
issues.
VDI: To impart quality education for creating globally competent, socially responsible
and ethically sound Electronic Engineers.
MD2: To provide academic environment that promotes creative thinking, team work
and research.
MD3: To enable the graduates to face societal challenges and provide holistic
solutions. Programme
PEO2: Analyse, design and create innovation and sustainable solutions to real life
problems to cater the social needs
PEO3: Inculcate the life learning abilities, professional attributes, ethics, effective
communication and managerial skills to work in multidisciplinary environment.
Programme Specific Objectives (PSO): The graduates of the department will attain
DECLARATION
ACKNOWLEDGEMENT
I would like to add a few words to express our thanks to Prof. Rohit U.M., HOD
of the Electronics and Communication Engineering , PDIT ,Hosapete for their
valuable advice from time to time.
I express my sincere thanks to all the faculty and staff members of the
Department of Electronics and Communication Engineering, PDIT , Hosapete ,
for their kind and constant support throughout the Mini Project Work.
I would like to thank the Almighty, who has always guided me to work on the
right path in life. My greatest thanks are to my parents who bestowed the ability
and strength in me to complete this work.
We are also thankful to the authors whose work has been consulted, utilized and
cited in this report. Words are often less to reveal ones true regards. An
understanding of work like this is never the outcome of the efforts of a single
person. I take this opportunity to express my profound sense of gratitude and
respect to all those who helped me in all the ways throughout this project
ABSTRACT
INDEX
CHAPTER 1 INTRODUCTION
CHAPTER 3 WORKING
CHAPTER 6 ADVANTAGES
AND
DISADVANTAGES
CHAPTER 7 APPLICATIONS
CHAPTER 8 CONCLUTION
CHAPTER 10 OBJECTIVES
CHAPTER 11 RESULT
CHAPTER 12 REFERENCES
RFID advances are productive and secure contrast with other system. With
RFID, remote programmed recognizable proof takes a certain frame: the
question, area, or individual is set apart with a remarkable identifier code
contained with a RFID tag, which is somehow connected to or implanted in the
objective. RFID isn't solitary item however a complete framework, an ordinary
RFID framework incorporate three essential components like RFID tag, peruser
and back-end application framework, which requests the help of the PC
organizer.
2.CIRCUIT DIAGRAM
CHAPTER 3
WORKING
When power is ON this door locks, the servo motor activates and pushes the
door lock forward. Also displayed as “Welcome, put your card” on the LCD.
Then when the RFID tag is moved closer to the RFID reader, it is scanned. In
that case, it is displayed as “scanning” on the LCD. Then, if the RFID tag is
correct, the servo motor is activated and the door lock is pulled back. The LCD
shows “Door is Open”. When the RFID tag is moved closer to the RFID reader
again, if it gets the correct tag, the servo motor will push the lock forward.
Displays “Door is locked” on LCD. If a wrong RFID tag is used according to
the program, it will be displayed as “Wrong card” on the LCD.
CHAPTER 5
LIST OF COMPONENTS AND ITS DESCRIPTION
Features:
Microcontroller: ATmega328.
Operating Voltage: 5V.
Input Voltage (recommended): 7-12V.
Input Voltage (limits): 6-20V.
Digital I/O Pins: 14 (of which 6 provide PWM output)
Analog Input Pins: 6.
DC Current per I/O Pin: 40 mA.
DC Current for 3.3V Pin: 50 mA.
Features:
It is able to Read and Write data without direct contact.
Reading and writing is possible without line of sight, using electric and
electromagnetic wave transmission.
Features :
The operating voltage of this LCD is 4.7V - 5.3V.
LCD DISPLAY
Features :
Operating Voltage: 5V
Backlight and Contrast is adjusted by potentiometer
Serial I2C control of LCD display using PCF8574
comes with 2 IIC interface, which can be connected by Dupont Line or
IIC dedicated cable.
Compatible for 16x2 LCD
This is another great IIC/I2C/TWI/SPI Serial Interface
I2C MODULE
Features :
The servo motor is specialized for high-response, high-precision positioning.
As a motor capable of accurate rotation angle and speed control, it can be used
for a variety of equipment. A rotation detector (encoder) is mounted on the
motor and feeds the rotation position/speed of the motor shaft back to the driver.
SERVO MOTOR
#include <SPI.h>
#include <MFRC522.h>
#define RST_PIN 9
#define SS_PIN 10
byte readCard[4];
byte a = 0;
void setup() {
Serial.begin(9600);
lcd.init();
lcd.backlight();
while (!Serial);
SPI.begin();
mfrc522.PCD_Init();
delay(4);
mfrc522.PCD_DumpVersionToSerial();
lcd.setCursor(2, 0);
lcd.print("Put your card");
}
void loop() {
if ( ! mfrc522.PICC_IsNewCardPresent()) {
return 0;
}
if ( ! mfrc522.PICC_ReadCardSerial()) {
return 0;
}
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Scanned UID");
a = 0;
Serial.println(F("Scanned PICC's UID:"));
for ( uint8_t i = 0; i < 4; i++) { //
readCard[i] = mfrc522.uid.uidByte[i];
Serial.print(readCard[i], HEX);
Serial.print(" ");
lcd.setCursor(a, 1);
lcd.print(readCard[i], HEX);
lcd.print(" ");
delay(500);
a += 3;
}
Serial.println("");
mfrc522.PICC_HaltA();
return 1;
#include <Servo.h>
#include <LiquidCrystal_I2C.h>
#include <SPI.h>
#include <MFRC522.h>
#define SS_PIN 10
#define RST_PIN 9
String UID = "";
byte lock = 0;
Servo servo;
LiquidCrystal_I2C lcd(0x27, 16, 2);
MFRC522 rfid(SS_PIN, RST_PIN);
void setup() {
Serial.begin(9600);
servo.write(70);
lcd.init();
lcd.backlight();
servo.attach(3);
SPI.begin();
rfid.PCD_Init();
}
void loop() {
lcd.setCursor(4, 0);
lcd.print("Welcome!");
lcd.setCursor(1, 1);
lcd.print("Put your card");
if ( ! rfid.PICC_IsNewCardPresent())
return;
if ( ! rfid.PICC_ReadCardSerial())
return;
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Scanning");
Serial.print("NUID tag is :");
Advantages :
Contactless entry experience
Easy to configure
More secure
Video surveillance at the door
Increased awareness
Low maintenance cost
Disadvantages:
Hacker Alert
Power shortage usage
More involved and more expensive to setup
CHAPTER 8
APPLICATIONS
Security
Asset tracking
Inventory detection
People tracking
Access control applications
CHAPTER 9
CONCLUSION
The door locking system functions in real time as when the user put the tag in
contact with the reader, the door open and the check-in information is stored in
central server along with basic information of the user.
In this study, we used passive RFID to construct a digital security system that
includes a door lock mechanism. When the user places the tag in contact with
the scanner, the door locking system activates in real time.
One of the most pressing issues of business owners in the modern period is the
safety and security of customers, staff, and the overall firm. All business owners
deal with lost keys, thievery, and forgotten pins on a daily basis. RFID locker
locks are a fantastic answer to these issues.
CHAPTER 10
SCOPE OF THE PROJECT
It depends upon how original one was able to enhance the use of this
paper.
But by us this paper is practical for future uses such as Smart car can be
interfaced with wireless technologies to make it completely portable in
the near future.
Payment of bills using mobile can be implemented. A low cost RFID
scanner can be manufactured and used which can scan multiple tags
(products) simultaneously for faster processing and lesser resources.
Automatic scanning & availability of products can be introduced. Pay
preparation feature will be the latest trend in upcoming years due to the
boost in the ecommerce industry. E.g.:
b) Gaming zone
CHAPTERSS 11
OBJECTIVES
In this paper, the proposed security system contains gate locking system using
passive type of RFID. The system stores all the necessary information about the
user. A new user is first registered with the system and the corresponding
information is burn in RFID tag.
This RFID tag will be accessible through the system. When a registered user
comes to the entry point, and put the tag into reader, the system checks whether
it is registered user or imposter. If the user is registered one then the tab
information is matched with the user information stored in system. The gate is
open to entry of the user after successful authentication and close automatically
after a specified time interval.
CHAPTER 12
RESULT
The system is developed in such a way that it provides a quick response to the
user and enhances the use of simple technologies in an efficient manner.
Now coming to the working, the system consists of a unique security key access
card which is saved in the system database and it will allow the user to go
through the gate only if the unique key card is detected.
we can see all the components connected in their respective ports and the
display also works remarkably.
We can see all the components and also we can identify them.
CHAPTER - 13
REFERENCE