Arduino Digital Code Lock Project Using Matrix Keypad

by Alex_chu in Circuits > Arduino

3091 Views, 3 Favorites, 0 Comments

Arduino Digital Code Lock Project Using Matrix Keypad

IMG_20190428_183433.jpg
Build a digital code lock device with Arduino and Qwiic system using Zio M Uno and a Hex 4x3 Matrix Keypad.

Project overview

For this project, we will build a simple digital code lock that users can enter and key in. In this tutorial, we will show users how a digital code lock system works in an Arduino Interface.

By the end of this tutorial you will be able to :

  • Set up a digital code lock with Zio and basic 12 keys keypad
  • Be able to interface with Arduino IDE to program Zio with keypad
  • Create a program that asks users to enter a six-digit password to unlock
  • Be able to create a new six-digit password

Helpful Resources

For simplicity purposes, this tutorial assumes that you have a full understanding and the know-how on configuring Zio development boards.

For this project, we assume you have already configured Zuino M Uno to interface with Arduino IDE. If you haven't done so we have a separate post on our development board guides. Check them out below:

Schematic Layout

Schematics.jpg

​Setup & Configuration

You will need the following modules to build this project:

  • Zuino M Uno
  • Zio Qwiic 0.91” OLED Display
  • Hex Matrix Keypad (4 x 3)
  • Qwiic Cables 200mm
  • Breadboard Cables Jumper wires (Male to Female)
  • Micro USB Cable

IMG_20190428_183433.jpg

Daisy chain the modules together as shown on the Schematics diagram above.

IMG_20190428_182102.jpg
IMG_20190428_182118.jpg
IMG_20190428_182133.jpg
connector-uno-keypad.jpg

Connect the Keypad using Male to Female Jumpers, to your Zuino M Uno

Download and install the following libraries to your Arduino IDE:

Plug your Uno to a computer. Download and Flash the code to your Uno using the Arduino IDE.

You can download the code from our Github page.

Demo: Login Test

IMG_20190428_182038.jpg
code unlock test.png
IMG_20190428_182322.jpg

Input the six-digit password followed by the “#” key. To find the 6 digit password stored in the program code, open the serial monitor and it will show the password for the lock.

If you successfully login with the correct password you will see a Welcome screen.

​Change Password Test

IMG_20190428_182229.jpg
changed password.png

Once you managed to login, you will be able to change the password to a new one. To change the password, confirm it with “*” key.

In this example, I changed the password from 123456 to 000000 as shown on the Serial monitor.

​Failed Login Attempt Test

IMG_20190428_182428.jpg
wrong password input 3 times.png

With this demo, we also included the function that, with 3 failed attempts of entering correct password, the device will locked itself. To test it, reset your Uno. Try and enter incorrect password 3 times.

You will be locked immediately after 3 failed attempts.