Kamis, 26 November 2015

Arduino with keypad tutorial

A keypad is one of the most commonly used input devices in microprocessor applications. In a standard keypad wired as an X-Y switch matrix, normally-open switches connect a row to a column when pressed. If a keypad has 12 keys, it is wired as 3 columns by 4 rows. A 16 key pad would have 4 columns by 4 rows. Some time ago, I bought a couple of 3×4 membrane keypads from eBay. As usual it’s packed with zero documentation, thus it took couple of hours to get to work. Anyway the keypad is a perfect blend of art and technology with a price tag far below rubies!
Add caption
 This little article is designed to help you get started with your new microcontroller + keypad project so let’s start. Following figure shows the internal structure and pin notation of the 3×4 keypad used for the experiment. The drawing is the result of an obscene amount of research work because I really wanted to make an error-free guide for the project we are working on.


keypad: internal structure and pin notation


 Here is the same information in a textual way; keypad columns C1-C2-C3 are routed to pins 3,1,5 and rows R1-R2-R3-R4 are routed to pins 2,7,6,4 located at the end of the 7-pin flexible cable. Much more clear now?


keypad:colums And row switching




So now you can see how the button presses can be translated into electrical data for use with a microcontroller. We can now start the real experiment with as Arduino Uno by wiring up the keypad to the Arduino in the following/like manner:
  • Keypad pin 1 to Arduino digital 3 //C2
  • Keypad pin 2 to Arduino digital 5 //R1
  • Keypad pin 3 to Arduino digital 2 //C1
  • Keypad pin 4 to Arduino digital 8 //R4
  • Keypad pin 5 to Arduino digital 4 //C3
  • Keypad pin 6 to Arduino digital 7 //R3
  • Keypad pin 7 to Arduino digital 6 //R2
Since keypads are available from many retailers make sure you can get the data sheet as this will make the task easier when wiring them up. If your keypad is different, take note of the lines in the sketch from //keypad type definition, as you need to change the numbers in the arrays rowPins[ROWS] and colPins[COLS]. You should enter the digital pin numbers connected to the rows and columns of the keypad respectively. Example from Arduino playground:
  1. #include "Keypad.h"
  2. // keypad type definition
  3. const byte ROWS = 4; //four rows
  4. const byte COLS = 3; //three columns
  5. char keys[ROWS][COLS] = {
  6. {'1','2','3'},
  7. {'4','5','6'},
  8. {'7','8','9'},
  9. {'*','0','#'}
  10. };
  11. byte rowPins[ROWS] = {5, 6, 7, 8}; //connect to the row R1-R4 pinouts of the keypad
  12. byte colPins[COLS] = {2, 3, 4}; //connect to the column C1-C3 pinouts of the keypad



Next is a project example, where the Arduino is instructed to do something based on a correct key (secret number) being entered into the keypad, probably the most demanded application of the keypad. For this, just wire up the hardware (arduino+keypad) as described earlier.

arduino keypad




Although the code is an entry-level one, it includes a secret key option that will need to be entered on the keypad. The Serial Monitor will tell whether the numerical-key inputted to the keypad is correct or not. To activate and deactivate the lock, the user must press * and then the secret key, followed by #. Okay, copy-paste, compile and upload this sketch (adaptation of a work by John Boxall) as usual:
  1. #include "Keypad.h"
  2. const byte ROWS = 4; // four rows
  3. const byte COLS = 3; // three columns
  4. char keys[ROWS][COLS] =
  5. {
  6. {'1','2','3' },
  7. {'4','5','6' },
  8. {'7','8','9' },
  9. {'*','0','#' }
  10. };
  11. byte rowPins[ROWS] = {5, 6, 7, 8};
  12. byte colPins[COLS] = {2, 3, 4};
  13. Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );
  14. char KEY[4] = {'1','2','3','4'}; // default secret key
  15. char attempt[4] = {0,0,0,0};
  16. int z=0;
  17. void setup()
  18. {
  19. Serial.begin(9600);
  20. }
  21. void correctKEY() // do this if the correct KEY is entered
  22. {
  23. Serial.println(" KEY ACCEPTED...");
  24. }
  25. void incorrectKEY() // do this if an incorrect KEY is entered
  26. {
  27. Serial.println("KEY REJECTED!");
  28. }
  29. void checkKEY()
  30. {
  31. int correct=0;
  32. int i;
  33. for ( i = 0; i < 4 ; i++ )
  34. {
  35. if (attempt[i]==KEY[i])
  36. {
  37. correct++;
  38. }
  39. }
  40. if (correct==4)
  41. {
  42. correctKEY();
  43. }
  44. else
  45. {
  46. incorrectKEY();
  47. }
  48. for (int zz=0; zz<4; zz++) // clear previous key input
  49. {
  50. attempt[zz]=0;
  51. }
  52. }
  53. void readKeypad()
  54. {
  55. char key = keypad.getKey();
  56. if (key != NO_KEY)
  57. {
  58. switch(key)
  59. {
  60. case '*':
  61. z=0;
  62. break;
  63. case '#':
  64. delay(100); // added debounce
  65. checkKEY();
  66. break;
  67. default:
  68. attempt[z]=key;
  69. z++;
  70. }
  71. }
  72. }
  73. void loop()
  74. {
  75. readKeypad();
  76. }
If your compiler raises an error “keypad does not name a type”, probably you have not installed the required Keypad Library correctly. If you still have the problem after downloading and installing the library, just drop me a line here in the comments.
Note that the good old 3×4 telephone keypad from your junk box can also be used for this project. Like most keypads, it is wired as an X-Y switch matrix, the normally-open switches connect a row (R) to a column (C) when pressed. Next figure shows the pin assignments of a generic 3×4 telephone keypad:



 f you don’t know which pin represents which row or column, you have to fiddle the “rummy” keypad using your analog multimeter. It might take hours to get to work, be patient!


Note: At the middle of this experiment, I got another 3×4 keypad from an eBay seller with the “true” Arduino compatible pin-out (see figure shown below). If you are using this type, it would be better to change the arrays rowPins[ROWS] and colPins[COLS] in the sketch as indicated.
AKP-7



reposted by T.K.Hareendran in Arduino
source : http://www.electroschematics.com/12446/arduino-with-keypad/

0 komentar:

 
Electronik Solution Copyright © 2009 Blogger Template Designed by Bie Blogger Template