Atmel-Code Lock With 4x4 Keypad and I2C™ LCD
Atmel-Code Lock With 4x4 Keypad and I2C™ LCD
LCD
Features
• Application example for code lock
- Ideal for low pin count AVRs 8-bit
• Uses I/O pins to read 4x4 keypad
• Uses Timer/Counter to control piezoelectric buzzer
Microcontrollers
• Uses USI in TWI mode to communicate with I2C™ LCD
• Firmware written entirely in C language
Application Note
1 Introduction
Code locks make the task of access management more flexible and easy to
configure. Mechanical locks require new keys to be manufactured every time a
user with access privileges is added. The lock has to be reconfigured or replaced
to change access privileges of a single user, and it may also have to be replaced if
any of the keys is lost. Situations like these may occur when people move from one
household to another, or when people enter and leave as employees of a
company. Code locks are easy to reprogram and can contain unique codes for
each user.
This application note describes how to build a code lock with an AVR and a handful
of components. The code lock uses a 4x4 keypad for user input, a piezoelectric
buzzer for audible feedback and an LCD for informational output.
The design is based on ATtiny24/44/84 devices, but can easily be migrated to
other AVR microcontrollers.
Rev. 8013A-AVR-10/05
2 Theory of Operation
The code lock described in this application note consists of a tinyAVR, a keypad, an
LCD, a piezoelectric buzzer and the actual (door) lock. The AVR constantly scans the
keypad for user input and will release the lock when the correct number sequence
has been entered. An LCD is used for feedback and status information. A small
piezoelectric buzzer is used for giving audible feedback on keystrokes and lock
status.
2.1 Keypad
The input device is a standard 4x4 matrix keypad. The keypad contains 16 keys,
symmetrically arranged in four rows with four keys, each. Each column and row of the
keypad is connected to an I/O pin.
The microcontroller continually scans the keypad by setting all row pins except one to
high and reading all column pins. All column inputs have pull-up resistors enables so
when a key is pressed the microcontroller will record a low level on one of the column
inputs.
2.3 LCD
The display used in this design is a 2x16-character LCD with an integrated controller.
The special feature of this display is the I2C™ interface on the LCD controller. The I2C
interface is compatible with the Two-Wire Interface (TWI) found on AVR controllers,
and since ATtiny24 is equipped with a Universal Serial Interface (USI) capable of
operating in TWI mode this means the LCD can be controlled using only two wires
and pins.
2 AVR245
8013A-AVR-10/05
AVR245
3 Implementation
The hardware implementation is rather straightforward. A prototype can be built easily
using an STK500, an STK505, some jumper cables and the essential keypad and
LCD.
3.1 Hardware
The schematic is illustrated in the figure below.
3.2 Firmware
The firmware is written entirely in C language. This is to make the design easy to
understand and to make further development of the design as straightforward as
possible.
3
8013A-AVR-10/05
The software is fully documented in the doxygen documentation provided with the
source code (see readme.html). Compiler requirements and info are also listed in
the file.
3.2.1 Overview
The flow chart of the main program is shown in the figure below.
4 AVR245
8013A-AVR-10/05
AVR245
Associated files:
• LCD.c
• LCD.h
Note: debugWIRE requires one of the pins used for the keypad interface. When the
symbol DEBUGWIRE in KPD.h is defined this pin will be freed for debugging, but the
last row of the keypad cannot be used.
4 Quick Start
Power up the application. The firmware will display the welcome message, as follows:
Tiny24 CODE LOCK
The second row is empty at this time. Push key number one on the keypad. The
display will now update to show the keypad buffer, as follows:
Tiny24 CODE LOCK
.......1
5
8013A-AVR-10/05
If no other keys are pushed in a few seconds time the keypad buffer and the second
line of the display will be cleared.
Enter the key sequence 1234. The application will accept this as the access code and
proceed to open the lock. A progress bar is shown to indicate how long the lock will
remain open, as follows:
LOCK OPEN
!!!!!!!!!!!!!
When the progress bar has decreased to zero the lock will close.
5 Further Development
Here are outlined some ideas for improvement and further development of the design.
6 AVR245
8013A-AVR-10/05
AVR245
5.2.3 Compact Keypad Interface
Consider using diodes to reduce the number of pins required to read the keypad. It is
possible to use only four I/O pins to control a 4x3 keypad. This enhancement saves
up to four I/O pins.
To interface a 3x4 keypad using only four I/O pins requires the use of six diodes, as
shown in the figure below.
The keypad driver in this configuration is similar to the default configuration; only the
return codes from I/O pins are different. There is no longer a one-to-one relationship
between key pressed and code returned. A single key press may toggle more than
one I/O pin.
The algorithm for scanning the keypad is as follows. First, set all four I/O pins to
inputs and enable pull-up resistors. Then, set one I/O pin to output, low and read the
three other I/O pins. The three-bit information will indicate if a key in the
corresponding row was pressed or not. Repeat scanning for all I/O pins.
7
8013A-AVR-10/05
6 Table of Contents
Features ............................................................................................... 1
1 Introduction ...................................................................................... 1
2 Theory of Operation......................................................................... 2
2.1 Keypad ................................................................................................................ 2
2.2 Piezoelectric Buzzer............................................................................................ 2
2.3 LCD ..................................................................................................................... 2
3 Implementation ................................................................................ 3
3.1 Hardware ............................................................................................................. 3
3.2 Firmware.............................................................................................................. 3
3.2.1 Overview ................................................................................................................... 4
3.2.2 TWI Driver ................................................................................................................. 4
3.2.3 LCD Driver................................................................................................................. 4
3.2.4 Keypad Driver............................................................................................................ 5
3.2.5 Event Timer ............................................................................................................... 5
3.2.6 Buzzer Driver............................................................................................................. 5
4 Quick Start........................................................................................ 5
5 Further Development ....................................................................... 6
5.1 ESD Protection .................................................................................................... 6
5.2 Freeing Up I/O Pins............................................................................................. 6
5.2.1 Smaller Keypad ......................................................................................................... 6
5.2.2 Keypad and LCD Multiplexing ................................................................................... 6
5.2.3 Compact Keypad Interface ........................................................................................ 7
8 AVR245
8013A-AVR-10/05
Disclaimer
Atmel Corporation Atmel Operations
Literature Requests
www.atmel.com/literature
Disclaimer: The information in this document is provided in connection with Atmel products. No license, express or implied, by estoppel or otherwise, to any
intellectual property right is granted by this document or in connection with the sale of Atmel products. EXCEPT AS SET FORTH IN ATMEL’S TERMS AND
CONDITIONS OF SALE LOCATED ON ATMEL’S WEB SITE, ATMEL ASSUMES NO LIABILITY WHATSOEVER AND DISCLAIMS ANY EXPRESS, IMPLIED
OR STATUTORY WARRANTY RELATING TO ITS PRODUCTS INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTY OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
CONSEQUENTIAL, PUNITIVE, SPECIAL OR INCIDENTAL DAMAGES (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, BUSINESS
INTERRUPTION, OR LOSS OF INFORMATION) ARISING OUT OF THE USE OR INABILITY TO USE THIS DOCUMENT, EVEN IF ATMEL HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Atmel makes no representations or warranties with respect to the accuracy or completeness of the
contents of this document and reserves the right to make changes to specifications and product descriptions at any time without notice. Atmel does not make any
commitment to update the information contained herein. Unless specifically provided otherwise, Atmel products are not suitable for, and shall not be used in,
automotive applications. Atmel’s products are not intended, authorized, or warranted for use as components in applications intended to support or sustain life.
© Atmel Corporation 2005. All rights reserved. Atmel®, logo and combinations thereof, Everywhere You Are®, AVR®, AVR Studio® and
others, are the registered trademarks or trademarks of Atmel Corporation or its subsidiaries. Other terms and product names may be
trademarks of others.
8013A-AVR-10/05