Analog Keypad Backpack

22K2519

Intro: Analog Keypad Backpack

You know those ole 12 button keypads which are very easy to use but eat microcontroller IOs like they are candy? Well now you can have your cake and eat it with this simple backpack board which will convert one of these hungry beasts down to consuming only a single analog input rather than 12 digital inputs.

You will need:
  • 12 button common terminal keypad. 1x
  • 1k ohm resistor, 12x
  • 12k ohm resistor, 1x
  • Protoboard (approx 1.5" x 1.5"), 1x
  • Soldering iron & solder
  • Hookup wire (red - approx 2"), x1
  • Hookup wire (black - approx 2"), x12
  • Hookup wire (red,black,yellow - approx 5"), x3
Optional:
  • Molex crimp pins, 3x
  • Molex female connector, 1x
  • Molex male connector, 1x
  • Hot glue gun
  • Mini vise

STEP 1: Circuit Design

The circuit is a simple series resistor ladder + voltage divider.
The common terminal of the keypad is held high through a 12k pullup resistor.
Each key terminal of the keypad is connected to a 1k resistor.
That resistor is in turn connected in series with its neighbor in a ladder twoards the common terminal.
The end of the resistor ladder is tied to ground.
The signal line is a voltage divider with its reference point between the 12K resistor and the resistor ladder.
Depressing a key causes a chain of resistors with a unique value to be introduced into the voltage divider, giving each key a unique analog value.

Eagle schematic files are attached for ease of reproduction on a protoboard or single sided etched copper board.

STEP 2: Connect Protoboard to Keypad

  1. Insert the keypad into the vise.
  2. Strip both ends of the 2" red wire and the 2" black wire.
  3. Solder the red wire to the common terminal of the keypad.
  4. Solder the 12 black wires to the button terminals of the keypad.
  5. Glue the underside of the wires to provide stress relief to the solder joints.
  6. Thread all 13 wires into the protoboard in a straight line and solder them in place.

STEP 3: Construct the Resistor Ladder

  1. Insert the board into the vise with the copper pads down.
  2. Starting away from the common terminal, insert the ladder resistors, diagonally crossing over one column towards the common terminal with each one. (1st pic)
  3. Tape down the resistors and turn the board over in the vise.
  4. Bend the resistor legs towards the keypad terminals which are already soldered. (2nd pic)
  5. Solder the resistor legs to the keypad wires. (3rd pic)
  6. Clip the resistor legs. (4th pic)
  7. Bend the other legs of the resistors back towards the keypad so they adjoin with their neighbors (5th pic)
  8. Solder the resistor legs to the ajdoining ends and keypad wires. (6th pic)
  9. The ladder is now complete

STEP 4: Construct the Voltage Divider

  1. Insert the 12k resistor at the common terminal side of the protoboard. (1st pic) (PS The pic shows a 10k resistor because i didn't have a 12k at hand, its close enough!)
  2. Solder one side of the resistor to the common terminal wire. (2nd pic)
  3. Strip insulation from the 3 signal wires.
  4. Insert the black (ground) wire at the end of the resistor ladder. (3rd pic)
  5. Insert the red (vcc) wire near the unconnected end of the 12k resistor at the common terminal.
  6. Insert the yellow (analog out) wire near the soldered end of the 12k resistor at the common terminal.
  7. Solder the signal wire to the end of the 12k resistor and keypad common terminal. (4th pic)
  8. Solder the black wire to the end of the resistor ladder.
  9. Soler the red wire to the unconnected end of the 12k resistor.

STEP 5: Tidy Up

  1. Trim the end of the protoboard close to where the terminal wires enter so it can be bent back around onto the back of the keypad. (1st pic)
  2. Hot glue all the keypad wires to the protoboard to provide stress relief to the solder joints.
  3. Hot glue the 3 signal wires to provide stress relief to the solder joints
  4. Bend the protoboard back against the keypad (2nd pic)
  5. Hot glue the signal wires in place so they exit facing the direction which fits best for your application.
  6. Attach molex crimp pins to the end of the signal wires for plug n play connection to a host circuit (3rd pic)

STEP 6: Test

I'm using a barebones Arduino on a breadboard but any arduino you have lying around will suffice.
  1. Connect the red wire to arduino VCC (+5v).
  2. Connect the black wire to arduino ground.
  3. Connect the yellow wire to arduino analog 0 input (A0).
  4. Power up the arduino and connect the usb port to your computer.
  5. Upload the attached sketch to your arduino.
  6. Open the arudino serial console.
  7. Set the baud rate to 115200.
  8. The sketch should be reading 1023 from the analog input (1023 = 5v)
  9. Press and hold the * key on the keypad
  10. The sketch should now read < 512 from the analog input
Now all we need is convert that analog reading to its corresponding key char.
Onto the next part...we will install an Arduino library to do this for us.

STEP 7: Setup Arduino AnalogKeypad Library for Easy Use

  1. Leave the circuit you built in the last step in place as is but power it down.
  2. Make sure the arduino editor is shut down. If it's open exit now, we will open it back up again shortly.
  3. Save the attached files (AnalogKeypad.cpp and AnalogKeypad.h) to a folder called AnalogKeypad under the library folder of your Arduino sketchbook library location (see image 1 for where this is on a Mac) For further help on Arduino libraries see this tutorial
  4. Download the attached example sketch which uses the AnalogKeypad library (AnalogKeypad.pde) to wherever you like to save Arduino sketches (It must also go inside a folder called AnalogKeypad, as per Arduino sketch rules)
  5. Start up the arduino editor
  6. Open AnalogKeypad.pde
  7. Select Menu -> Sketch -> Import Library -> Analog Keypad
  8. The arduino editor will probably add another #include <AnalogKeypad.h> line (which you can remove if you wish)
  9. Ensure the arguments to the AnalogKeypad constructor are set properly as per the resistor values you used in the divider and ladder. The default is 12K (pullup) and 1K (ladder), so if you used them it will work fine.
  10. Power up your test circuit again
  11. Upload the arduino sketch to the circuit.
  12. Open the arduino serial window by clicking on "Serial Monitor" in the toolbar.
  13. Select "115200" from the baud rate drop down
  14. Press buttons on the keypad and observe the printouts in the serial monitor.


19 Comments

Hi, I'm just wondering if I'm able to lower the values on the resistors and doing so, add more buttons?

I was hoping to use this as a basis for a keypad for a DIY media centre remote, but I need more than 12 buttons.

This design can definitely be extended to utilize more buttons. You don't need to lower the values of the resistors though. The values of the resistors are chosen based on a ratio.

The resistors in this design were chosen to give a ratio of 1:12 per button in the ladder. Hence the pull up resistor is 10k and each of the 12 buttons uses a 1k resistor. This works well for commonly available resistor values even though the design has 1:10 ratio using 1k/12k

So depending on how many button's you're planning on utilizing I would choose a similar ratio for the ladder.

The thing to be aware of is the more buttons you add, the closer each step of the ladder gets and you may start running into issues figuring out which button was pressed. I'm not sure at what number of buttons this would start happening.

The library is setup so that you can pass in the resistor values for the pull up and ladder sections. It will then calculate the voltage it expects to see resistance value of each button.

You'll need to modify the library to work with a different number of buttons though, it's currently hardcoded for 12 buttons in numerous places

Thanx for this tutorial.
I have used it to make a toy organ.
It's works perfectly

Thank you for making this easy step-by-step tutorial. Worked like a charm.

Very ingenious implementation!
Here's an image of my DIY keypad

http://dominion-network.co.uk/projectstuff/keypad.jpg

I'm currently in the process of neatening it up so it looks a lot better, and so I'm also able to 'waterproof' it with a diy membrane.
I don't have a fancy one like you, I've scratch built mine (Working on turning it into an instructable) and it works perfectly (All the buttons match up with the keys) and I've not really got any code (None that work anyway) other than the two separate libraries, I've tried combining the "PasswordKeypad" example with the analog keypad library but doesn't seem to want to work and I'm currently at a loss.
OK Send me the code you have anyway.
I cant help without seeing what you're working with.

Also send me some pics of the hardware physical
hardware setup or eagle schematics.

Im also a little unclear on what you mean by combining both.
I assume you want to capture input from the keypad and pass it onto
the password library. Is this correct?
I sent the stuff you requested, it'll be from "webmaster[at]dominion-network[dot]co[dot]uk"
I haven't been able to make it into a solder board project yet (the board hasn't been delivered yet), I've currently got buttons 1 through 9 on a solderless breadboard at the moment.

But yeah I'm trying to capture input from the analog keypad and pass it through to the password library and so far everything I've attempted has failed...

Once I've had my dinner I will take the required photos and I will email them as well as the code I've got.
Hey, it's me again, I'm trying to get your library to work with this library
http://www.arduino.cc/playground/Code/Password
But I'm not having any luck, could you give me a hand?
By any chance would you be able to take some more photos of the resistors? I'm trying to design a PCB and some of the steps are a little confusing for example the placement of the black, red and yellow wires, a diagram would be great.
HEADS UP!
All the source is avaiable on github:
https://github.com/declanshanaghy/KeypadBackpack

I've started implementing the Arduino Library to read the keys (see here)
https://raw.github.com/declanshanaghy/KeypadBackpack/master/AnalogKeypad/AnalogKeypad.pde


However, the code doesn't include any debouncing logic yet. I should get that implemented within the next week. (busy with some other stuff)

Feel free to fork and send me a pull request if you implement it yourself.
Added debouncing and repeat rate options to the code. Files are pasted above.
Thank you for this!, I've read an instructable (look for Arduino 3 wire Matrix Keypad) saying how to do this, but it never gave any actual step by step instructions with images, I've bookmarked this and when I get one of these keypads I'll be doing this.

Where did you get your keypad from? was it Maplins? (UK) or Sparkfun? (USA)
This approach won't work with a Matrix keypad (such as the one sparkfun sells)

The keypad must be the type that has 13 terminals.
1 for each of the 12 keys and 1 common termal

I got this "common terminal" keypad at allelectronics.com
http://www.allelectronics.com/make-a-store/item/KP-12/12-BUTTON-KEYPAD//1.html

Most people use matrix keyds because it saves pins compared to a common terminal keypad. However, i think the common terminal approach is much easier since you can get it down to only using 1 pin with a few measly resistors.


I have another question about that keypad, do you have a datasheet for it? I'm looking at creating a disposable one for a project (Don't want to pay money for a keypad that may get damaged in this particular project)
Sorry, I dont have a datasheet.
AllElectronics is pretty bad when it comes to datasheets - basically non existent for any of their products.

Thanks for the link and the information, I can't wait to do/use this for my project