Keypad Locking System With User Defined Password: January 20, 2021 by Gurmeet Singh
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.
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
#include
#include
#include
#include
sbit LEDg=P2^4;
sbit LEDr=P2^3;
}
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_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
}
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_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;
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
Create PDF in your applications with the Pdfcrowd HTML to PDF API PDFCROWD
Watch on
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 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)
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
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
EDABOARD.COM DISCUSSIONS
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
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