0% found this document useful (0 votes)
4 views5 pages

Smart Door Security System Overview

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)
4 views5 pages

Smart Door Security System Overview

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

SMART DOOR SECURITY SYSTEM

Mini Project Report

Submitted by
Dhanush
Department of Electronics and Communication Engineering
SACO College
(Under Anna University 2021 Regulation)

Academic Year: 2025

ABSTRACT
The Smart Door Security System is an advanced access control system designed using
Arduino technology. It enhances the security of homes and offices by combining multiple
authentication methods such as a password keypad, RFID card verification, and an LCD
display for user feedback. A servo motor acts as the lock controller, providing a mechanical
locking mechanism controlled electronically. The system ensures two-step verification,
making unauthorized access nearly impossible. It is an efficient, cost-effective, and easily
deployable security solution.

OBJECTIVE
The primary objective of this project is to design and implement a multi-layer door security
system using Arduino that ensures enhanced protection through password authentication
and RFID-based verification. The system also provides real-time feedback using an LCD
display.

EXISTING SYSTEM
Conventional door lock systems use mechanical locks or single-level electronic locks. These
systems can be easily tampered with, and losing a key or password can lead to serious
security issues. Moreover, they lack modern verification techniques such as RFID or smart
access.
PROPOSED SYSTEM
The proposed Smart Door Security System introduces a two-step verification mechanism
using both password and RFID authentication. The system uses a servo motor as the lock
controller, controlled by an Arduino microcontroller. The LCD displays the system status,
and the keypad allows the user to input the password. Upon successful verification of both
credentials, the door unlocks automatically.

HARDWARE REQUIREMENTS
• Arduino UNO board
• 4x4 Matrix Keypad
• 16x2 LCD Display
• RFID Module and RFID Card/Tag
• Servo Motor
• Buzzer
• Power Supply (5V)
• Connecting Wires and Breadboard

SOFTWARE REQUIREMENTS
• Arduino IDE
• Embedded C Programming Language

BLOCK DIAGRAM
The block diagram of the Smart Door Security System consists of the following main units:
1. Arduino Controller
2. Keypad Module
3. RFID Module
4. LCD Display
5. Servo Motor (Lock Mechanism)
6. Power Supply

When the system is powered ON, the LCD prompts the user to enter the password. If the
entered password matches the stored password, the system then requests RFID card
verification. If both verifications are successful, the Arduino sends a signal to the servo
motor to rotate and unlock the door.

WORKING PRINCIPLE
The system operates in a sequential verification manner. The user first enters the password
on the keypad. If it matches the stored password, the RFID reader is activated for the second
level of authentication. The RFID module reads the unique ID of the card or tag and
compares it with the pre-stored ID in the Arduino memory. If both authentications are
successful, the servo motor rotates 90 degrees to unlock the door. In case of incorrect
credentials, the system activates the buzzer and displays an error message on the LCD.

ADVANTAGES
• Provides two-step authentication for enhanced security.
• Easy to install and operate.
• Low power consumption.
• Cost-effective and reliable.
• Compact design and user-friendly interface.

APPLICATIONS
• Home and office security systems.
• Hostel and school entry systems.
• ATM room door control.
• Industrial access control.

CONCLUSION AND FUTURE SCOPE


The Smart Door Security System ensures a secure, efficient, and convenient way to control
door access. By integrating password and RFID verification, it minimizes unauthorized
entry risks. In the future, this system can be further enhanced with biometric sensors,
mobile app connectivity, and IoT integration to enable remote monitoring and control,
making it a complete smart home security solution.

ARDUINO SOURCE CODE


#include <Servo.h>
#include <LiquidCrystal.h>
#include <SPI.h>
#include <MFRC522.h>

#define SS_PIN 10
#define RST_PIN 9
MFRC522 rfid(SS_PIN, RST_PIN);

Servo lockServo;
LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

const int buzzer = 8;


char password[5];
char pass[5] = "1234";
int a = 0;

void setup() {
[Link](16, 2);
[Link](11);
pinMode(buzzer, OUTPUT);
digitalWrite(buzzer, LOW);
[Link]();
rfid.PCD_Init();
[Link]("SMART DOOR LOCK");
delay(2000);
[Link]();
}

void loop() {
[Link](0, 0);
[Link]("ENTER PASSWORD:");
getPassword();

if (strcmp(password, pass) == 0) {
[Link]();
[Link](0, 0);
[Link]("PASSWORD CORRECT");
delay(1000);
[Link]();
[Link]("SCAN RFID CARD");
while (!rfid.PICC_IsNewCardPresent() || !rfid.PICC_ReadCardSerial());
[Link]();
[Link]("ACCESS GRANTED");
[Link](90);
delay(3000);
[Link](0);
[Link]();
[Link]("DOOR LOCKED");
delay(1000);
[Link]();
resetPassword();
} else {
for (int i = 0; i < 3; i++) {
digitalWrite(buzzer, HIGH);
delay(150);
digitalWrite(buzzer, LOW);
delay(150);
}
[Link]();
[Link](0, 0);
[Link]("WRONG PASSWORD!");
[Link](0, 1);
[Link]("TRY AGAIN");
delay(2000);
[Link]();
a = 5;
resetPassword();
}
}

void getPassword() {
int i = 0;
while (i < 4) {
// Add keypad input function as per hardware
}
}

void resetPassword() {
for (int i = 0; i < 4; i++) password[i] = 0;
a = 0;
}

Common questions

Powered by AI

The authentication process begins with the user entering a password via the keypad. If the password matches the stored one in the system, the LCD prompts the user to present an RFID card. Upon successful reading and verification of the RFID card, the system sends a signal to the servo motor to unlock the door. This sequential process ensures that both credentials are verified before access is granted .

Reliance on RFID technology could introduce security risks such as eavesdropping, cloning, or jamming. Eavesdroppers might intercept the signal between the RFID card and the reader, while cloning RFID cards poses a risk of unauthorized access if physical cards are copied. Jamming devices could disrupt the communication between the RFID tag and reader, potentially leading to denial of service. Addressing these vulnerabilities would require encryption and secure authentication protocols .

Integrating biometric sensors, such as fingerprint or facial recognition, could provide an additional layer of security by requiring a unique biological marker for access, further reducing the risk of unauthorized entry. IoT features would enable remote monitoring and control of the system through mobile apps or web platforms, allowing users to manage access from anywhere, and receive real-time alerts and updates on security status. Together, these enhancements would transform the system into a comprehensive smart home security solution .

The Smart Door Security System is cost-effective due to its use of readily available electronics and open-source Arduino technology, which are inexpensive compared to proprietary security solutions. Its design focuses on simplicity and minimal hardware requirements, reducing the overall costs associated with installation and maintenance compared to traditional systems that might require complex configurations or professional installation services .

The LCD display provides real-time feedback to the user, which enhances the overall user experience by guiding them through authentication steps. It displays prompts for entering passwords and scanning RFID cards, and gives status updates such as 'ACCESS GRANTED' or 'WRONG PASSWORD!', thus reducing confusion and improving user interaction with the system. This clear communication through the LCD contributes to ease of use and device accessibility .

The servo motor acts as the mechanical part of the electronic lock mechanism; it converts electronic signals from the Arduino into mechanical movement, thereby locking or unlocking the door. This precise control allows the Smart Door Security System to operate smoothly upon successful authentication, providing reliable and quick physical security responses to electronic verification. The use of a servo motor also facilitates an automatic and seamless locking process .

The Smart Door Security System utilizes an Arduino microcontroller to integrate multiple layers of authentication, including password input via a keypad and RFID card verification. The Arduino processes these inputs to control a servo motor lock mechanism, which provides an electronically controlled locking system as opposed to manual locks. This integration ensures that the lock only disengages upon successful authentication of both credentials, enhancing the overall security compared to traditional mechanical locks .

For industrial access control, the Smart Door Security System provides enhanced security through multi-layer verification, which significantly reduces unauthorized entry risks. It supports audit trails due to electronic tracking of access attempts, crucial for security and compliance in industrial settings. Its ability to integrate further with IoT and provide remote monitoring offers flexibility and control, essential for managing access across multiple entry points within large industrial complexes .

A two-step verification system provides enhanced security by requiring two separate credentials for access, thereby reducing the risk of unauthorized entry. The Smart Door Security System integrates both password and RFID verification, making it nearly impossible for unauthorized users to gain access without possessing both credentials. This method overcomes the vulnerabilities of conventional locks that rely on a single key or password, which can be easily lost, stolen, or hacked .

In high-security environments, limitations include potential vulnerabilities in RFID technology, which might be susceptible to cloning or jamming attacks. Furthermore, reliance on electronic components could lead to failures from power supply issues or electronic malfunctions. The system's current lack of biometric integration might not meet stringent security requirements, posing a challenge unless additional security measures are implemented alongside the existing setup .

You might also like