3×4 Array Matrix Keypad, hard keys, black
4.50 out of 5
CAD 4.97
Need more than we have? Order now, we will ship when back in stock. Lead time about 2-3 weeks. See our backorder policy. |
Availability: In stock (can be backordered)
SKU: 26113
Discount Type | Quantity | Volume Price |
---|---|---|
Quantity | 3 - 9 | 10% CAD 4.47 |
Quantity | 10 - 24 | 15% CAD 4.22 |
Quantity | 25 + | 20% CAD 3.98 |
- Description
- Reviews (2)
Description
3×4 Array Matrix Keypad for Micro Controller. Robust plastic, hard keys, fits Arduino etc.
This black keypad with white letters comes with 12 tactile switches. The resistance of a pressed key element is <1k Ohm. An operation voltage of 35V and a maximum current of 10mA per switch element must not be exceeded.
A library, supporting this keypad, is available for example within the Arduino IDE.
Dimensions: 51.5 x 69mm
2 reviews for 3×4 Array Matrix Keypad, hard keys, black
Add a review
You must be logged in to post a review.
Marc –
i have spend time to find the lines.. on Arduino-Uno, i use D0 to D7 (shift to D3 to D9 if you use the serial terminal because D0-D1 are the communication lines and the keypad will be jammed) directly on the connector and so, the keypad is on the Arduino, not in the air.. (don’t use/solder the first and the last hole of the KeyPad).. for to be compatible with the keypad library, write those code lines:byte ROWS = 4;byte COLS = 3;byte rowPins[ROWS] = {1, 6, 5, 3};byte colPins[COLS] = {2, 0, 4};char hexaKeys[ROWS][COLS] = {{‘1’, ‘2’, ‘3’}{‘4’, ‘5’, ‘6’}{‘7’, ‘8’, ‘9’}{‘*’, ‘0’, ‘#’}};with those code lines, all work fine!to have the decimal (0-9) value, use this line:decimal_number = customKey – 48;
Robert Leedham (verified owner) –
A heads up – the pads are not on 0.1″ spacing; can’t use on a breadboard.
Seems OK otherwise.