You are on page 1of 12

5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects

http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 1/12
Embedded Projects
This blog is dedicated for Embedded Projects and Tutorials. ARM, AVR, PIC,
8051, Arduino Projects and Tutorials are discussed here.
HOME
TEMPLATE ERROR: LHS of numeric is null before 61 in http://microcontrollerprojects00.blogspot.in/p/blog-page.html
TEMPLATE ERROR: LHS of numeric is null before 66 in http://microcontrollerprojects00.blogspot.in/p/privacy-policy.html
HOME ABOUT US PRIVACY POLICY CONTENTS MY SMART HOMEPROJECT
PIC Microcontroller Based Electronic Lock
Circuit Diagram

RELATED
TOTAL PAGEVIEWS
RECENT POSTS
My Smart Home Project
ABSTRACT Smart home
technology has proved to
contribute to increased
independence and safety.
Smart Home Technology is a
collective term for information and
communication technology in homes,
where the components are
communicating through a...
STM32F4 Discovery Tutorial 1 Using
NETMF - Setting Up the En...
Normal 0 false false false EN-
IN X-NONE X-NONE ...
STM32F4 DISCOVERY BOARD
The STM32F4DISCOVERY
helps you to discover the
STM32F4 high-performance
features and to develop your
applications easily. It includes
everything required for beginners and
experienced users to get started quickly.
Based on the...
Digital Voltmeter using PIC
Microcontroller
Normal 0 false false false EN-
IN X-NONE X-NONE ...
PIC 4x4 Keypad Interfacing Tutorial -
MikroC
Normal 0 false false false EN-
IN X-NONE X-NONE
MicrosoftInternetExplorer4 ...
Automatic Water Level Control And Real
Time Monitoring
Automatic Water Level Control
And Real Time Monitoring
Description This project will
control the water level and
keep the level between two
predefined upper and lower positions.
Any sensors can be used for this project,...
PC Based Voltmeter Using C#
Voltmeter C# Arduino, PIC,
AVR This program is

Search

10:33 AM Vishal Kottarathil 55 comments
+3 Recommend this on Google
4 5 1 1 7 8
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 2/12
Security is a prime concern in our day-today life. Everyone wants to be as much secure as
possible. An access control for doors forms a vital link in a security chain. The microcontroller
based digital lock for Doors is an access control system that allows only authorized persons to
access a restricted area.
An electronic lock or digital lock is a device which has an electronic control assembly attached to
it. They are provided with an access control system. This system allows the user to unlock the
device with a password. The password is entered by making use of a keypad. The user can also
set his password to ensure better protection. The major components include a Keypad, LCD
and the controller PIC16F877A. This article describes the making of an electronic code lock
using the 16F877A microcontroller.
The system is fully controlled by the 8 bit microcontroller 16F877A which has a 8Kbytes of ROM
for the program memory. The password is stored in the EPROM so that we can change it at any
time. The system has a Keypad by which the password can be entered through it. When the
entered password equals with the password stored in the memory then the relay gets on and so
that the door is opened.
The code is built in a modular style to allow a user to find ways to modify project. In start the D
Lock programs loads with a default code of "2345" format is *2345# which can be enter to
unlock the door, the code cam be change by entering the master code in the format
*23455#new 4 digit code. In this program i only display the result on LCD and lock will be
placed at PORTA bit 0 where i put led for simulation.
A 4x3 matrix keypad and a 16x2 LCD have been used here. Keypad and LCD are very commonly
used input & output devices, respectively. The password is stored in the system EEPROM.
While unlocking, if the entered password from keypad matches with the stored password, then the
lock opens and a message is displayed on LCD. Also an output pin is made high to be used for
further purpose..
AVR This program is
developed in C# (C sharp). It
needs .NET framework 4.0 to
work. For the circuit and other
details of the project go to the Link. Click
on the image to download the program.
PC...
PC Based Digital Voltmeter Using PIC
16F877A
Voltmeter C# .Net PIC,
Arduino, AVR Normal 0 false
false false EN-US X-NONE X-
NONE ...
Interrupt of PIC 16F877A
Interrupt of PIC 16F877A
Features of the external
interrupt that we will use. The
interrupt is triggered by an
input on RB0, either (
depending on how we set it up ) as the
signal goes from 0 to 1, called the rising
edge, or as...
An Extra UART For Your PIC
Software UART Library The mikroC
PRO for PIC provides routines for
implementing Software UART
communication. These routines are
hardware independent and can be used
with any MCU. The Software UART
Library provides easy...
Contents

Embedded Projects
On Facebook Contents of
Embedded Projects Blog
Embedded Projects PIC Digital
Voltmeter using PIC Microcontroller PC
Based Voltmeter...
Generate Sound And Melody Using PIC
Microcontroller Tutorial

Facebook Page Sound is a function of
frequency. This concept has been used to
generate sound from the microcontroller.
Different types of sounds can be produced
by varying the...
8051 4 Bit LCD Interfacing Tutorial
Click Here For Character LCD
Basics Lcd LibraryThe
mikroC PRO for 8051 provides
a library for communication
with Lcds (with HD44780
compliant controllers) through the 4-bit
interface. An example of Lcd connections
is given on the schematic at...
USB to Serial Converter using AVR
microcontrollers
AVR-CDC converts USB and
RS-232C signals using the AVR
micro- controller which has no
on-chip USB interface. This
technology is based on Object
Deveopment's V-USB (Software-USB on
AVR), and the CDC (Communication
Device Class) protocol was...
8051 Serial Communication Tutorial
(UART)
First, a quick history of RS232.
What is RS232? It's just a
name for a standard that has
propagated from generation to
generation of computers. The
first computers had serial ports that used
RS232, and even current computers have
serial ports (or...
FIND US
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 3/12
As the program starts, wait for 5sec and press * string Enter Password is displayed on LCD. The
keypad is scanned for pressed digits one by one. Every time, row and column of the key pressed is
detected and is displayed on LCD. After the four digits are entered, the user should press # to
Confirm Password and again the input is taken through LCD. If the passwords do not match, a
message is displayed to indicate Access Denied otherwise the Access Granted message.
The default password is 2345 and master key to change password is 23455., entry begins with * and
stops with #.
Update 28-8-2013
1. Here two circuit are provided, the smaller one works only for
simulation and the larger one works only in real world( Problem
with Pull Down resistors)
2. Due to frequent Requests I have Uploaded the HEX(8Mhz Crystal) file of
these project in Our Facebook Group-Click Here
Code

Discussion Group
Facebook Page Contents Page

Check Our New Blog: Embedded Projects-Tutorials-Arduino-
Android-Raspberry PI- Gadgets News - Embedded Hackes -
New Embedded Products Intro etc
(click the Image Below to Visit the Blog)

Posted in: 16x2 Character LCD,4x3 Keypad,EEPROM,Electronic code lock,Embedded,Embedded
Project,Lock,Microcontroller,Microcontroller Project,MikroC EEPROM,Password Lock,PIC,PIC Based Electronic Lock,Project
RELATED
FOLLOW BY EMAIL
POPULAR POSTS
PIC Serial Communication
Tutorial (UART)
First, a quick history of RS232.
What is RS232? It's just a name for
a standard that has propagated from
generation to generation o...
PIC Microcontroller Based
Electronic Lock
Circuit Diagram Security is a prime
concern in our day-today life.
Everyone wants to be as much
secure as possible. An ac...
STM32F4 Discovery Tutorial 1
Using NETMF - Setting Up the
Environment
STM32F4 STM32F4 Discovery I
received my STM32F4 Discovery
board few days ago. During these days I am
searchi...
PIC Countdown Timer (0-99)
This project describes how to
program PIC16F628A to function as
a 00-99 min programmable timer.
User can set any time betwe...
AVR Serial Communication
Tutorial (UART)
First, a quick history of RS232.
What is RS232? It's just a name for
a standard that has propagated from
generation to generation of c...
CATEGORIES
.NET (2)
16x2 Character LCD (9)
2 UART (1)
18 comments
Comment
Add a comment...
Navjot Singh Gill Team leader at Formula Hybrid
hii,,, i have downloaded pdf containing code....but its not working in Proteus 8...can u tell me
why?
Debug build of project `C:\Users\user\Documents\proteus projects\first.c.mcp' started.
Language tool versions: MPASMWIN.exe v5.50, mplink.exe v4.48, mplib.exe v4.48.
Preprocessor symbol `__DEBUG' is defined.
Wed May 07 21:47:54 2014.
----------------------------------------------------------------------
Build aborted. The project contains no source files.
----------------------------------------------------------------------
Debug build of project `C:\Users\user\Documents\proteus projects\first.c.mcp' failed.
Language tool versions: MPASMWIN.exe v5.50, mplink.exe v4.48, mplib.exe v4.48.
Preprocessor symbol `__DEBUG' is defined.
Wed May 07 21:47:55 2014.
Find us on Facebook
Embedded Projects
9,164 people like Embedded Projects.
Facebook social plugin
Like
Embedded Projects
You Can Make This
Raspberry Pi Cellphone
Yourself for $160
http://www.davidhunt.ie/
piphone-a-raspberry-pi-
based-smartphone/
Email address... Submit
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 4/12
4x3 Keypad (1)
4x4 keypad (1)
8051 (6)
8051 Project (3)
8051 Tutorial (3)
89C51 (4)
89C51 Project (2)
89S51 (1)
89S52 (1)
Additional UART (1)
ARM (1)
Atiny (1)
Atmega8 (1)
AVR (5)
Avr Project (1)
C# (1)
C# Serial Port (2)
C# serial Terminal (1)
C# Voltmeter (1)
Clock (1)
Contents Page (1)
Digital Voltmeter (3)
EEPROM (2)
Electronic code lock (1)
Embedded (18)
Embedded Project (11)
Embedded Tutorial (13)
Embeded (5)
Extra UART (1)
Home Security (1)
Internet Based Device Control (1)
Keypad (1)
Keypad Tutorial (1)
LCD (6)
LCD Tutorial (4)
Lock (1)
LPG Sensor (1)
MAX232 (3)
Microcontroller (15)
Microcontroller generates sound (1)
Microcontroller Interrupt (1)
Microcontroller Project (7)
Microcontroller Tutorial (11)
Microcontroller Tutorial. 8051 Tutorial (1)
Mikoc 4 Bit LCD (3)
MikroC (15)
Wed May 07 21:47:55 2014.
----------------------------------------------------------------------
BUILD FAILED
is showing on build.
Reply Like May 7 at 3:57am
MA Abdul Basit HN Electronics engineering
I m realy need it's code.
please send the code on my id as early as possibal.
Reply Like April 10 at 8:14am
MA Abdul Basit HN Electronics engineering
my id
abdulbasit1111212@gmail.com
Reply Like April 10 at 8:16am
Mir Aulckerland Michigan State University
hie may you sent me the code and som hex files if possible aulckerland@gmail.com.
Reply Like March 25 at 5:39am
Mir Aulckerland Michigan State University
hie may you sent me the code and som hex files if possible.
Reply Like March 25 at 5:38am
Kamlesh Gurudasani Vishwakarma Institute of Information Technology
Can you please mail me the proteus simulation of the circuit?/.
kamlesh.gurudasani@gmail.com
Reply Like March 17 at 11:00am
Dominic Murray Works at Furtados Music
where is the hex file.
Reply Like February 17 at 9:16am
Sami Ullah Swati Univercity of Engineering & Technology (UET) Peshawer
I made the circte it aske that j1 is not nodified and after removing that onlu 1 colume keys
work can any one help me?/.
ibni.aziz@yahoo.com
its my email please.
Reply Like December 22, 2013 at 10:19am 1
Abdul Rehman Le miglr
halaka yaar apna profile picture chang karo koie stylish type hone chaheiey.
Reply Like December 22, 2013 at 12:03pm
Sami Ullah Swati Univercity of Engineering & Technology (UET) Peshawer
Abdul Rehman ok
Reply Like December 22, 2013 at 1:44pm
Sami Ullah Swati Univercity of Engineering & Technology (UET) Peshawer
when I press key 2 that row become lock and no other signal can be taken from same
roww?
can any one help?
Reply Like December 22, 2013 at 1:43pm 1

hello I have microc program for pic but when I type the code it said there is wrong starting
from here }
code_read();
Lcd_Cmd(_LCD_CLEAR); //Clear Display
Lcd_Cmd(_LCD_CURSOR_OFF); //Cursor Off
Lcd_Out(1, 1, msg1);
Delay_ms(2000);
//Lcd_Cmd(_LCD_CLEAR); //Clear Display
do
{
it said that i have an error >>specifier needed - syntax error:')' expected, but'1' found
>>invalid declarator expected'(' or identifier>>>identifier redefined>>msg1 identifier
redefined>>>internal error>>>if you can help me to solve the error that would be great
Reply Like October 28, 2013 at 3:23pm
Vishal Kottarathil Owner/Managing Director at Arrogance Technologies 219
subscribers
make sure you added all necessary libraries.
Reply Like December 15, 2013 at 6:27pm
Samet Ycel Eskiehir Osmangazi University
Vishal Kottarathil can you say that which libraries necessary for this project i can't
compile it
Reply Like December 19, 2013 at 3:03pm
Vishal Kottarathil Owner/Managing Director at Arrogance Technologies 219
subscribers
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 5/12
Newer Post Older Post Home
55 comments:
MikroC AVR (3)
MikroC AVR Tutorial (3)
MikroC EEPROM (2)
MikroC for 8051 (4)
MikroC PIC Tutorial (6)
Mikroc tutorial (3)
Motor Control (1)
NETMF (1)
Password Lock (1)
PC Based Voltmeter (1)
PIC (8)
PIC Based Electronic Lock (1)
pic ADC (3)
pic interrupt (1)
PIC Music (1)
pic project (4)
PIC sound melody (1)
PIC Tutorial (3)
PIC UART (1)
PIC Voltmeter (3)
Project (10)
Projects Topic (1)
Real Time Monitoring (2)
RS 232 (1)
Security System (1)
Serial Communication (3)
Smart home (1)
Smart Home Project (1)
STM32 (3)
STM32F4 (3)
STM32F4 Discovery (3)
STM32F4 Project (1)
STM32F4 Tutorials (3)
STMicroelectronics (1)
Temperature Sensor (2)
Timer (1)
Tutorial (8)
Uart (6)
USB (1)
USB to RS 232 (1)
USB to UART (1)
VISUAL STUDIO (1)
Water Level Control (1)
BLOG ARCHIVE
2013 (4)
View 1 more
Facebook social plugin
subscribers
Samet Ycel Include all Libraries, It is a usual practice.
Reply Like December 19, 2013 at 6:26pm
Baghdady Baghdady
thank you for this work.
Reply Like January 20 at 11:12pm 1
Vishal Kottarathil Owner/Managing Director at Arrogance Technologies 219
subscribers
With pleasure.
Reply Like February 12 at 7:12pm
rabbi-bd said...
Password should not be displayed on LCD. It is not secured. **** can be displayed instead.
March 31, 2012 at 6:38 AM
Vishal K M said...
Thank you foe your advise. This project is designed as an academic project. Simplicity is for
the ease of demonstration. And added a buzzer and some more features to it. If anybody
enter wrong password more than three times, the buzzer sounds continuously and system
should be restarted.
March 31, 2012 at 11:38 PM
Nayantha Hettiarachchi said...
i have a problem. i designed a system using this code. but it cant simulate in real simulation
May 26, 2012 at 8:44 AM
Vishal K M said...
@Nayantha
Its working no problem. I will send the whole project in proteus. You should use pull downs
for all pins connected to keypad in a real design.
June 1, 2012 at 7:39 AM
Mustafa said...
thanks for this great idea
but i need this programs in Mikrobasic can you get it for me??
July 10, 2012 at 3:16 PM
riya biswas said...
is the code given full complete..?
August 31, 2012 at 7:04 AM
Arduino lover said...
if you like everything related to micro-controllers visit my blog:
All about Embedded Systems
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 6/12
2012 (25)
November (2)
October (2)
August (1)
June (3)
April (3)
March (13)
Projects Topic List
AVR Serial Communication Tutorial (UART)
PIC Serial Communication Tutorial (UART)
Electronic Voting Machine Using 8051
Microcontroll...
89C51 Based Digital Thermometer Using
DS1820
PIC 4 Bit LCD Interfacing Tutorial
PIC 16F887 Based Digital Thermometer
AVR 4 Bit LCD Interfacing Tutorial
Character LCD Basics
AVR EEPROM Tutorial
PIC Countdown Timer (0-99)
PIC Microcontroller Based Electronic Lock
LCD based digital alarm clock using 89S51
microcon...
February (1)
ABOUT ME
VI SHAL KOTTARATHI L
Follow
245
VIEW MY COMPLETE
PROFILE
Embedded Projects. Powered by Blogger.
FOLLOWERS
Join this site
with Google Friend Connect
Members (38) More
Already a member? Sign in
LABELS
Contents Page (1)
September 13, 2012 at 5:46 AM
nupur said...
nupsangel05@gmail.com
really interested to kjnow the deatails of this project..so pls send me here..
September 25, 2012 at 9:58 PM
Joselito Moraes said...
which compiler did you use?
September 29, 2012 at 4:16 PM
Vishal Kottarathil said...
MikroC for PIC.
September 29, 2012 at 8:27 PM
Raimar Austria said...
can u pls send me the whole project in proteus? because it is my project now and i have a
problem about the circuit. I don't know where do i put the oscillator, the resistor in keypad
and its value? and where do i put the L7805 5V output to pic? I hope you send it to me
immediately because the deadline of my project is on OCT.12(Friday). thank you for your
electronic lock =)
October 7, 2012 at 1:43 AM
Vishal Kottarathil said...
@ Raimar : Please check this link
http://www.facebook.com/photo.php?
fbid=367276126688130&set=a.258302774252133.62236.258274150921662&type=1&relev
ant_count=1
October 7, 2012 at 4:03 AM
TEHMAAS HASAN said...
THANK YOU FOR THIS SUCH A GOOD COMPILATION OF PROJECTS. CAN YOU MAIL ME.
THIS PROJECT CODING ON NOTEPAD.
MY EMAIL ADDRESS IS
cheez.wheelz@gmail.com
November 11, 2012 at 4:56 AM
TEHMAAS HASAN said...
THANK YOU FOR YOUR QUICK REPLY. IF I WANT TO USE 4X4 KEYPAD WHAT CHANGES
ARE EXPECTED.
November 11, 2012 at 8:18 AM
Vishal Kottarathil said...
connect the 4th column to 4th(1,2,3,4) pin of the keypad port, and make required change in
program.
November 13, 2012 at 3:20 AM
TEHMAAS HASAN said...
greeting
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 7/12
i am having a problem while compiling this code at mikroc version 8.2. it is giving an error
char keypadPort at PORTD; on this line.
i really want to compile it and need its hex file.
please help
November 17, 2012 at 8:10 AM
TEHMAAS HASAN said...
GREETINGS ONCE AGAIN
I have tried your code many times to compile. please help me why it is not compiling my
compiler is working fine.
PLEASE REPLY AS SOON AS POSSIBLE
November 17, 2012 at 9:35 AM
Vishal Kottarathil said...
Make sure that you included the keypad library.
November 20, 2012 at 9:01 AM
said...
can you end to me the code please
eng_ahmed_osama@hotmail.com
November 20, 2012 at 7:05 PM
TEHMAAS HASAN said...
Please tell me the library file for keypad.. and what more header files are to be included.
WAITING FOR YOUR REPLY. THANKS
November 21, 2012 at 7:06 AM
Vishal Kottarathil said...
You can see Library Manager tab left of the project window. Check the check box of required
libraries.
November 21, 2012 at 7:06 PM
TEHMAAS HASAN said...
GREETINGS MY PROBLEM REGARDING ITS SIMULATION IS SOLVED THANKS FOR YOUR
HELP. NOW SOME THING WHICH IS NOT SUPPOSED TO BE OCCURRED IS BEING
OCCURRED.
WHEN THE SIMULATION STARTS THE LED AT PORT A pin 0 starts glowing but instead it
should glow when ACCESS is being granted. before it must not glow. If am right then please
provide appropriate solution. else guide me what is the real logic behind it.
PLEASE REPLY AS SOON AS POSSIBLE
wait
November 22, 2012 at 11:29 PM
preksha said...
proteus simulation code
valisha.dcosta@gmail.com
December 15, 2012 at 10:37 PM
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 8/12
charme leizl zepeda said...
sir can you also send me the proteus file?
here's my email betoy.aguila@gmail.com
thank you very much!!
January 14, 2013 at 5:27 PM
Seema Waghulde said...
my lcd is taking random data after "Enter Code" an after 3 attempts shows Access denied
February 12, 2013 at 3:25 AM
Vishal Kottarathil said...
Hello,
Sorry the file is missing, i will try to build a new one. Sorry for late reply.
February 12, 2013 at 5:05 AM
Vishal Kottarathil said...
No problem in the code for taking random character, it works perfectly. Is that taking
randomly always? check the keypad connection. the connections in come of the available
keypads are not in order, check our keypad tutorial here.
Its code protected for THREE wrong entry, after that the device cannot be accessed, you
need to reset it.
All of you are welcome to our group, get the link from the above blog post.
Regards,
Vishal
February 12, 2013 at 5:11 AM
Chukwunonso Okonta said...
Greetings,
Please, can you mail me the pdf of the project, and if you do...would it be ok if I modify it while
practicing?
wi.turtlez@gmail.com
Also, I've been given a project on
"Microcontroller based electronic locking system module"
...and I'm not really sure how to go about it....can you help.
Thanks,
Chuck Konta
March 11, 2013 at 3:44 AM
Vishal Kottarathil said...
Hello,
Sorry the file is missing, i will try to build a new one. Sorry for late reply.
March 11, 2013 at 10:26 PM
Vishal Kottarathil said...
I had written only this much of matter, so there is no PDF available. I hope the above
explanation is enough. There is no problem for using the code or design, but if you post this
project somewhere please add a reference.
March 11, 2013 at 10:33 PM
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 9/12
Vishal Kottarathil said...
Use the Discussion Group link please.
March 11, 2013 at 10:54 PM
Aazib Giani said...
can you plz send me proteus file...i am having difficulty in making 1....
what does the circuit U1 do thats on top right if the figure..
aazib.gil@gmail.com
May 5, 2013 at 1:33 AM
said...
sir can you pls mail the code and proteus file
my id is
swap_k007@rediffmail.com
May 30, 2013 at 10:02 AM
Fas S said...
This comment has been removed by the author.
May 30, 2013 at 4:44 PM
Fas S said...
hello .... i tried your code and it compiles just fine but i can't seem to simulate it in proteus ....
could you please send me the whole project(code and simulation ) on fasika47@gmail.com
.i would be really great-full....
May 30, 2013 at 4:49 PM
Harshit Sharma said...
can you please send me proteus file at harshits996@gmail.com
June 21, 2013 at 10:35 PM
tabish Malik said...
kindly send me proteus file at focusme19@gmail.com...
August 1, 2013 at 2:05 AM
micheal owen owen said...
can u sent to me the project 'code' to my email
ir_student007@yahoo.com
hope u can help me.. n_n
August 18, 2013 at 8:19 AM
julius cimeni said...
please send the project code in notepad and proteus file. thank you.
julius_cimeni@yahoo.com
August 28, 2013 at 9:58 AM
sukrut goswami said...
can u pls mail the program code my id is
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 10/12
sukrut_goswami@yahoo.com
September 1, 2013 at 3:01 AM
paing khant said...
Hello,Sir
Thanks for yr sharing.
I already chosen this project as my school final project.
Please send me this source in C (.txt) , other .pdf files and useful references links to my
mail: paing.peace@gmail.com.
Thanks for yr kindness.
Paing Khant
September 30, 2013 at 3:19 AM
Vishal Kottarathil said...
There is a link posted at the end of the article, you can download HEX file and C file (From
Facebook Group).
September 30, 2013 at 7:52 AM
paing khant said...
Sir, i can't download from http://www.scribd.com/doc/86640317/Electronic-Code-lock.
i cannot purchase thus also cannot download because of our country. Can't do copy/paste.
But i read and typed in Notepad and complied in mikroC Pro. when write, occur 4 data error.
So please send me Source Code in C with Notepad.
i downloaded HEX file from FB Group.
Thanks a lot,sir
October 2, 2013 at 11:12 PM
Sank-Ga Crewz said...
sir im really cant access the facebook link...can u send the source code to my emaIl
(sunkgacrewz22@gmail.com) asap..please sir..im doing this project for my final year. hOpe
u will help me.
October 7, 2013 at 6:42 AM
Richard Boisvert said...
Does it work well? Could it surely secure anyone's home?
Master Keys Farmers Branch
October 15, 2013 at 4:39 PM
Md.Hasan Gazi said...
Is the upper portion of the circuit given at the right corner of the application circuit
necesary?Those who have worked with this circuit please help me.
November 14, 2013 at 10:05 AM
Safdar Rasool said...
please do you PIC code of conveyor belt project. if you have. please send me
safdar.rasul@gmail.com
November 20, 2013 at 1:11 PM
ella asley said...
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 11/12
Post a Comment
That's an awesome concept with microcontrollers. Security system is very essential in each
and every technology nowadays. Password must be complex and should not be in an easy
way to analyse by anyone. PIC microcontroller is used to perform various kinds of tasks
which is used control a production line and microcontrollers are programmed as timers. It is
used in control systems such as door lock mentioned in the blog, alarm system,
phones,etc.
November 21, 2013 at 10:41 PM
amra omar said...
I have a problem with "FF", I received this message " Undeclared identifier 'FF' in expression
December 15, 2013 at 10:52 AM
Vishal Kottarathil said...
Check for FF in the program.
I can identify it if you paste the code snippet here.
December 15, 2013 at 6:29 PM
Zhi En Yong said...
This comment has been removed by the author.
December 18, 2013 at 9:22 AM
Zhi En Yong said...
Can u send to me the PIC source code ...thanks
Email: max_yong1994@hotmail.com
December 18, 2013 at 9:29 AM
techjfh said...
Hi,I'm very interested on the electronic lock. I would really appreciate it if you could please
email me the whole project(code and simulation(proteus)). My email is ecejfh@gmail.com.
Continue with your great work. Thanks
January 6, 2014 at 12:46 PM
Pawan Bahuguna said...
This is a very good microcontroller based project
January 19, 2014 at 2:02 AM
mangesh said...
hie sir,
i need a c program and if possible a hex file so that i can run it on proteus. indeed i tried
searching the program in ur fb lick but i wasn't able to find one. hope u can send me on my
mail id nivishkamdar@gmail.com
February 11, 2014 at 1:18 AM
5/13/2014 PIC Microcontroller Based Electronic Lock ~ Embedded Projects
http://microcontrollerprojects00.blogspot.com/2012/03/pic-microcontroller-based-electronic.html 12/12
Enter your comment...
Comment as:
Google Account
Publish

Preview
RELATED

Copyright 2011 Embedded Projects | Powered by Blogger
Embedded Projects Blog Tutorials | Projects - |

You might also like