Principle Behind the Circuit:
The main component in the circuit is 8051 controller. In this project 4×3 keypad is used to enter the password. The password which is entered is compared with the predefined password.
If the entered password is correct then the system opens the door by rotating door motor and displays the status of door on LCD. If the password is wrong then door is remain closed and displays “pwd is wrong” on LCD.
Circuit Diagram of Password Based Door Lock System using 8051 Microcontroller:
Hardware Requirements:
- at89c51 controller
- 8051 programming board
- Programming cable
- DC battery or 12V,1A adaptor
- 4×3 matrix keypad
- 16×2 LCD
- 5V Relay
- DC motor
- BC 547 Transistor
- 10k, 330 Ω resistor (1/4 watt)
- 10uF electrolytic capacitor
- 33pF capacitors – 2
- 12MHz Crystal
- Pot 10k (1/4 watt) – 1
- connecting wires
Software Requirements:
- Keil compiler
- Flash magic
- Proteus
Electronic Code Lock System Circuit Design:
Password based door lock circuit design uses five major components – a Microcontroller, a Relay, a DC motor, a 4×3 matrix keypad and a LCD. Here AT89C51 microcontroller is used and it is an 8-bit controller. This controller requires a supply voltage of +5V DC. In order to provide regulated 5V DC voltage to the controller we need to use 7805 power supply circuit. We can use 9V DC battery or 12V, 1A adaptor as a power source.
Reset Circuit Design: The reset pin of the microcontroller is kept active till the power supply is in the specified range and a minimum oscillation level is maintained. In other words to ensure the supply voltage does not falls below the threshold level of 1.2V and the reset pulse width is greater than 100ms (recommended for 89C51), we select the values of resistor and capacitor such that RC >=100ms. Here we select a 10K resistor and a 10uF electrolyte capacitor.
Oscillator Circuit Design: A crystal oscillator is used to provide external clock signal to the microcontroller. To ensure smooth operation, we connect two ceramic capacitors ranges from 20pF to 40pF. This crystal oscillator is connected between pin 18 and 19 of the microcontroller.
Compilation of Microcontroller Code: Once the circuit is designed and drawn on a piece of paper, the next step is to write and compile the code. Here we select the Kiel uVision software to write the program in C language.
Prior to writing the code, general steps needs to be followed like creating a new project and selecting the target device or the required microcontroller. Once the code is written, we saved it with .c extension and then added it to the source file group under the target folder. The code is then compiled by pressing F7 key.
Once the code is compiled, a hex file is created. In the next step, we use Proteus software to draw the circuit. The code is dumped into the microcontroller by right clicking on the IC and then adding the hex file.
program click here
Password Based Door Locking System Circuit Operation:
Once the circuit is powered, microcontroller sends commands to the LCD to display “enter password” on LCD. Now we need to enter the password using the keypad. Once password is entered, it displays 5 stars on LCD to indicate that controller read password successfully.
Now the controller compares the entered password with predefined password. If the password is matched then controller makes P3.0 high. So the base of the transistor gets sufficient current to drive the relay, as a result Door motor rotates to open the door. If the password is not matched then microcontroller makes P3.0 low. Hence door motor is at stationary so that door remains close.
Password Based Door Lock System Algorithm:
- Initially declare the PORT1 to LCD data pins and control pins to P3.5, P3.6 and P3.7 and declare PORT2 to keypad. And use P3.0 to Door motor.
- Initially display enter password on LCD.
- Now read the five digit password from the user, while reading each digit from the keypad display * symbol on LCD.
- Compare the entered password with stored password.
- If password is correct then make P3.0 pin high for some time to open the door. After that display “Door is opened” on LCD.
- If the password is wrong then display “pwd is wrong” on LCD.
- After some delay again ask to enter password.
No comments:
Post a Comment