Download as pdf or txt
Download as pdf or txt
You are on page 1of 20

Keypad Locking System with User Defined Password

January 20, 2021 By Gurmeet Singh

In this keypad lock project I have used the AT89S52 microcontroller, one of the series of 8051 microcontroller by ATMEL corp. Here I’m using 4X4 keypad to take
input from the user (to enter password) and display the corresponding results on a 16X2 LCD.
Since AT89S52 doesn’t have its own internal oscillator, thus we need to provide an external crystal of 11.0592 Mhz to make it function able. I am using a 7805
voltage regulator IC to convert 9V to desired 5V output.
In this project, I have used a normal 9V DC battery but we can also connect an AC-DC adapter for longer demonstrations. (For adapter  configuration, look for the
datasheet of IC 7805 voltage regulator)

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Fig. 1: Prototype of 8051 Microcontroller based Keypad Locking System
2 LEDs(green, red) also help us to know about status of the lock.Green led lights up when the lock is open and Red led lights up when the lock is closed.I have also
indicated the status of lock on the LCD itself, on its bottom right corner.Using a preset(potentiometer), can help us to adjust the contrast of the text on LCD. I have
used a preset of 50K.
The default password set is “000”, but user can change this password.To change the password, press “*” on the keypad followed by pressing “#”. It will ask user for
the current password, then for the new password followed by its confirmation.On confirming the password, “CHANGE SUCCESSFUL” statement will be shown else

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
“CHANGE UNSECCESSFUL” will appear for which current password will remain authenticated. Password related things are hidden, rather they are shown by “*”. This
is done to make password more protected/hidden (only known to user) in real world.
I have used three user defined header file:
< lcd.h>, < delay.h> and <keypad.h>
lcd.h handles with all user defined functions which are needed to operate a 16X2_8 bit   LCD.
delay.h includes  function like delay_msec(), which provides delay in milliseconds according to the TIMERS present in AT89S52.
keypad.h deals with the functions which is responsible for inputting values from 4X4 keypad.
· LCD data ports are connected to PORT 3 of AT89S52.
· RS, R/W and ES pins of the LCD are connected to P2^0, P2^1, P2^2 respectively.
· VEE pin of LCD is connected to a preset to adjust the contrast.
· Pins 15 & 16 of LCD are connected to VCC & GND respectively.
· The 8 pins of the Keypad are connected to PORT 1 of AT89S52.
· The GREEN LED is connected to P2^4 and RED LED to P2^3.
Peripherals that can be attached:
· We can use a linear actuator system to provide a mechanical locking system
· We can also use a magnetic system for doing the same.
· Using a stepper motor/servo motor controlled system in also a good idea.

 Utilities and Drawbacks of This Lock


UTILITIES OF THIS LOCK:
This keypad based system can be used for security purposes like electronic safe, keypad door lock and many more.
This can also be clubbed with some major projects to make them password operated.
DRAWBACKS:
Due to volatile (data vanishes as soon as the supply goes off) nature of the memory of AT89S52, the user defined password will remain retained until reset button
is not pressed or supply to the microcontroller is given.
Once reset button is pressed or supply to the microcontroller is cut-off, default password (000) will get activated automatically and hence the user defined
password will not exist anymore.
To avoid this we can use EEPROM (Electronically Erasable Programmable Read Only Memory). This will help us to store the user defined password even if the
supply goes off or reset button is pressed.
EEPROM is a non volatile memory which means that it will store data in itself even if it is not provided with any supply/voltage.

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
 

Project Source Code


###

#include
#include
#include
#include

sbit LEDg=P2^4;
sbit LEDr=P2^3;

//// FUNCTIONS FOR LOCK image on LCD////


void lock()
{
Lcd8_Cmd(72);
Lcd8_Write_Char(0);
Lcd8_Write_Char(14);
Lcd8_Write_Char(10);
Lcd8_Write_Char(10);
Lcd8_Write_Char(31);
Lcd8_Write_Char(27);
Lcd8_Write_Char(31);
Lcd8_Cmd(0xcf);
Lcd8_Write_Char(1);

}
void open()
{

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Lcd8_Cmd(72);
Lcd8_Write_Char(14);
Lcd8_Write_Char(10);
Lcd8_Write_Char(2);
Lcd8_Write_Char(2);
Lcd8_Write_Char(31);
Lcd8_Write_Char(27);
Lcd8_Write_Char(31);
Lcd8_Cmd(0xcf);
Lcd8_Write_Char(1);
}

//// FUNCTION INPUTTING VALES FROM USERS AND STORING THEM TO AN ARRAY////
void input(char arr[])
{ unsigned char i=0,k=0,N[16];
Lcd8_Cmd(0xc0);
while(k!='#')
{
k=Read_Keypad();
if(k && k!='#')
{
N[i++]=k;
Lcd8_Write_Char('*');
}
}
strcpy(arr,N);
arr[i]='';
}

void main()
{
unsigned char P[16]={"000"}; ///default password

while(1)
{ unsigned char p[16],s[16],j;

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
LEDg=0;LEDr=1;
Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("ENTER PASSWORD");
input(p);

if(strcmp(p,P)==0)
{
Lcd8_Init();
open();
Lcd8_Cmd(0x80);
Lcd8_Write_String("ACCESS GRANTED");
LEDr=0;LEDg=1;
while(Read_Keypad()!='#')
{}
}
else if(strcmp(p,"*")==0)
{
Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("CURRENT PASSWORD");
input(p);

if(strcmp(p,P)==0)
{
Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("NEW PASSWORD");
input(s);

Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("CONFIRM PASSWORD");

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
input(p);

if(strcmp(p,s)==0)
{ j=strlen(s);
strcpy(P,s);
P[++j]='';
Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("CHANGE");
Lcd8_Cmd(0xc0);
Lcd8_Write_String("SUCCESSFULL");
while(Read_Keypad()!='#')
{}
}
else
{
Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("CHANGE");
Lcd8_Cmd(0xc0);
Lcd8_Write_String("UNSUCCESSFULL");
while(Read_Keypad()!='#')
{}
}
}
else
{
Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("WRONG PASSWORD");
delay_msec(2000);
}
}
else

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
{
Lcd8_Init();
lock();
Lcd8_Cmd(0x80);
Lcd8_Write_String("ACCESS DENIED");
LEDr=0;delay_msec(250); LEDr=1;delay_msec(250);
LEDr=0;delay_msec(250);
LEDr=1;delay_msec(250);
LEDr=0;delay_msec(250);
LEDr=1;delay_msec(250);
}
}
}

----------------------------------------------------------------------------------

CODE (delay.h)

----------------------------------------------------------------------------------
void delay_msec(int time)
{int i=0;
while(i{TMOD=0x10;
TH1=0xfc;
TL1=0x65;
TR1=1;
while(TF1==0);
TR1=0;
TF1=0;
i++;
}
}

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
--------------------------------------------------------------------------------------
CODE (lcd.h)
--------------------------------------------------------------------------------------
#include
//LCD Module Connections
sbit RS=P2^0;
sbit RW=P2^1;
sbit E=P2^2;
//End LCD Module Connections

char *string;
//LCD 8 Bit Interfacing Functions

void Lcd8_Cmd(unsigned char value)


{
P3=value;
RS=0;
RW=0;
E=1;
delay_msec(1);
E=0;
}

void Lcd8_Init()
{
Lcd8_Cmd(0x38); //function set
Lcd8_Cmd(0x0C); //display on,cursor off,blink off
Lcd8_Cmd(0x01); //clear display
Lcd8_Cmd(0x06); //entry mode, set increment
}

void Lcd8_Write_Char(unsigned char value)


{

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
P3=value;
RS=1;
RW=0;
E=1;
delay_msec(1);
E=0;
}

void Lcd8_Write_String(char *a)


{
int i;
string=a;
for(i=0;a[i]!='';i++)
Lcd8_Write_Char(a[i]);
}

void Lcd8_Shift_Right()
{ int j;
for(j=0;j{Lcd8_Cmd(0x1C);delay_msec(100);}
}

void Lcd8_Shift_Left()
{ int k;
for(k=0;k{Lcd8_Cmd(0x18);delay_msec(100);}
}

------------------------------------------------------------------------------
CODE (keypad.h)

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
------------------------------------------------------------------------------
sbit R1 = P1^0;
sbit R2 = P1^1;
sbit R3 = P1^2;
sbit R4 = P1^3;

sbit C1 = P1^4;
sbit C2 = P1^5;
sbit C3 = P1^6;
sbit C4 = P1^7;

//End Keypad Connections

char Read_Keypad()
{
C1=C2=C3=C4=1;

R1=0;
R2=1;
R3=1;
R4=1;
if(C1==0){while(C1==0);return '1';}
if(C2==0){while(C2==0);return '2';}
if(C3==0){while(C3==0);return '3';}
if(C4==0){while(C4==0);return 'A';}
R1=1;
R2=0;
R3=1;
R4=1;
if(C1==0){while(C1==0);return '4';}
if(C2==0){while(C2==0);return '5';}
if(C3==0){while(C3==0);return '6';}
if(C4==0){while(C4==0);return 'B';}
R1=1;
R2=1;

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
R3=0;
R4=1;
if(C1==0){while(C1==0);return '7';}
if(C2==0){while(C2==0);return '8';}
if(C3==0){while(C3==0);return '9';}
if(C4==0){while(C4==0);return 'C';}
R1=1;
R2=1;
R3=1;
R4=0;
if(C1==0){while(C1==0);return '*';}
if(C2==0){while(C2==0);return '0';}
if(C3==0){while(C3==0);return '#';}
if(C4==0){while(C4==0);return 'D';}
return 0;
}

###

Circuit Diagrams
Circuit-Diagram-8051-Microcontroller-Based-Keypad-Locking-System

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Project Video

keypad lock with lcd interface using 8051


Watch later Share

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Watch on

Filed Under: Circuit Design


Tagged With: at89s52, keypad lock
 

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
HAVE A QUESTION?

Have a technical question about an article or other engineering questions? Check out our engineering forums EDABoard.com and
Electro-Tech-Online.com where you can get those questions asked and answered by your peers!

EDA BOARD

ELECTRO-TECH-ONLINE

FEATURED TUTORIALS

Designing Closed Loop Non – Isolated Buck Converter (Part 6/12)

Designing Open Loop Non – Isolated Buck Converter (Part 5/12)

Designing Close Loop Non-Isolated Boost Converter With Adjustable Output (Part 4/12)

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Designing Open Loop Non-Isolated Boost Converter With Adjustable Output Voltage (Part 3/12)

Designing Closed Loop Non – Isolated Boost Converter SMPS (Part 2/12)

Designing an Open loop Boost Converter SMPS (Part 1/12)

STAY UP TO DATE

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
EE TRAINING CENTER CLASSROOMS

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
RECENT ARTICLES

How to generate PWM-based dual sine waves


Keysight brings O-RAN architect to AWS Outposts
Samsung releases beta version of its Internet 15.0
NI Connect: Learn how test and data analytics will shape new innovations
DEKRA selects Keysight’s test solutions to verify 5G devices

MOST POPULAR

555 timer circuit 8051 alarm Arduino atmega16 avr circuit clock computer connector dc motor display Electronic Part Electronic
Parts Fujitsu gsm ic infineontechnologies Intel invention IoT ir lcd ldr led maximintegratedproducts microchip Microchip Technology microchiptechnology

microcontroller motor nxpsemiconductors Raspberry Pi remote renesaselectronics renesaselectronicscorporation Research robot


samsung sensor stepper motor STMicroelectronics switch Technology vishayintertechnology

EDABOARD.COM DISCUSSIONS

How to decompile .bin from Microchip EEPROM


PSFB current sensing
CAT5 cable wires for SPI

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Film capacitor vs Electrolytic capacitor?
Ground loops? Leaky current to ground? On RF equipment in the Lab

ELECTRO-TECH-ONLINE.COM DISCUSSIONS

convertinf Ardunio code to Swordfish basic


Will I be able to turn them off?
Mot Tesla coil not working
Funny Images Thread!
Cheap USB oscilloscopes.

Connect with Engineers Garage  

ANALOG IC TIPS POWER ELECTRONIC TIPS

CONNECTOR TIPS SENSOR TIPS

DESIGNFAST TEST AND MEASUREMENT TIPS

EDABOARD FORUMS 5G TECHNOLOGY WORLD

EE WORLD ONLINE ABOUT US

ELECTRO-TECH-ONLINE FORUMS CONTACT US

MICROCONTROLLER TIPS ADVERTISE

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Copyright © 2021 WTWH Media LLC. All Rights Reserved. The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of WTWH Media
Privacy Policy | Advertising | About Us

Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD

You might also like