0% found this document useful (0 votes)
3 views8 pages

MES Theory Report

The document outlines the design and implementation of an RFID door lock access control system, which uses RFID technology to secure access to restricted areas. It details the components required, the operation of the system, and the benefits of using RFID for enhanced security and monitoring. The project demonstrates a practical solution for environments needing controlled access, such as offices and educational institutions.

Uploaded by

Somo Pattnaik
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views8 pages

MES Theory Report

The document outlines the design and implementation of an RFID door lock access control system, which uses RFID technology to secure access to restricted areas. It details the components required, the operation of the system, and the benefits of using RFID for enhanced security and monitoring. The project demonstrates a practical solution for environments needing controlled access, such as offices and educational institutions.

Uploaded by

Somo Pattnaik
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

Microprocessor and Embedded Systems EC 2002

RFID door lock access control system

Group Members:

2230045 - Soham Patra


2230273 - Rishav Raj
2230046 - Somo Prasad Pattnaik
2230025 - Harsh Kumar Panjiyara
2230033 - Prabuddha Kumar Samanta

B.Tech in Electronics & Computer Science

School of Electronics Engineering

Kalinga Institute of Industrial Technology


Deemed to be University Bhubaneswar, India

NOVEMBER 2024
Abstract

An RFID door lock access control system leverages Radio Frequency Identification (RFID) tech
nology to secure access to restricted areas. It utilizes RFID tags, commonly embedded in key car
ds or fobs, which store unique identification data. When an authorized RFID tag is brought near t
he RFID reader, the system verifies the ID and triggers a relay to unlock the door. This system of
fers enhanced security, as it reduces the risks associated with physical keys, and can log access ti
mes, improving monitoring and management of entry points. Commonly used in offices, educati
onal institutions, and secure facilities, RFID access control systems are a cost-effective and scala
ble solution for controlled access.

Introduction

The RFID door lock access control system is a modern security solution designed to restrict and
monitor access to specific areas. By using RFID technology, this system allows only authorized
individuals, equipped with unique RFID tags, to unlock doors and gain entry. This project
combines RFID readers, control circuitry, and relays to enable or deny access based on pre-set
permissions. It provides a secure, contactless, and efficient way to manage access, offering a
practical solution for environments requiring controlled entry, such as offices, labs, and restricted
facilitie.

Materials Required

Here is the list of components required to get started with the Instruction,

Hardware Components

 Arduino Uno

 RFID Module

 LCD
 I2C Module

 Servo motor

 Bread Board

 Jumper Wires

 Micro USB Cable

Software Components

 Arduino IDE

Description
When powering this door lock, the servo motor activates and pushes the door lock forward. Also
displayed as “Welcome, put your card” on the LCD. 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.

2 More Images
Circuit Connections

CODE
#include <LiquidCrystal_I2C.h>#include <SPI.h>#include <MFRC522.h>
#define RST_PIN 9#define SS_PIN 10
byte readCard[4];
byte a = 0;

LiquidCrystal_I2C lcd(0x27, 16, 2);


MFRC522 mfrc522(SS_PIN, RST_PIN);
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;}

OUTPUT / RESULT:
Conclusion

In conclusion, the RFID door lock access control system offers an effective and
reliable method for securing restricted areas. Its use of RFID technology ensures
quick, contactless access, enhancing both convenience and security. By logging
entry data, it also provides a valuable tool for tracking access and improving
overall facility management. This project demonstrates the potential of RFID
systems in modern access control, making it a practical solution for diverse
environments that prioritize security and efficiency.
Signature of the faculty

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy