OPERATION HOURS

Monday - Friday: 9am - 6pm.
Saturday: 10am - 2pm.

Sunday & Public Holiday: Closed.

VIEW GOOGLE MAP

Buy online 24/7 or walk-in to our store, our friendly team is always ready to serve you :)

3X4 Matrix Array Membrane Keypad

MYR3.90
REFERENCE#: C11-3X4BLUE
AVAILABILITY: 139 PIECE(S) SHIP SAMEDAY / NEXT WORKING DAY
Quantity
In Stock

Punch in your secret key into this numeric matrix keypad. This keypad has 12 buttons, arranged in a telephone-line 3x4 grid. It's made of a thin, flexible membrane material with an adhesive backing (just remove the paper) so you can attach it to nearly anything. The keys are connected into a matrix, so you only need 7 microcontroller pins (3-columns and 4-rows) to scan through the pad. Click the tutorials link to an Arduino library and example code.

Technical Details

  • Weight: 7.5 grams
  • Keypad dimensions: 70mm x 77mm x 1mm (2.75" x 3" x 0.035")
  • Length of cable + connector: 85mm
  • Connector: Dupont 7 pins, 0.1" (2.54mm) Pitch
  • Mount Style: Self-Adherence
  • Max. Circuit Rating: 35VDC, 100mA
  • Insulation Spec.: 100M Ohm, 100V
  • Dielectric Withstand: 250VRms (60Hz, 1min)
  • Contact Bounce: <=5ms
  • Life Expectancy: 1 million closures
  • Operation Temperature: -20 to +40 °C


Arduino codes:
=============================================================================
#include 

const byte ROWS = 4; //four rows
const byte COLS = 3; //three columns
char keys[ROWS][COLS] = {
  {'1','2','3'},
  {'4','5','6'},
  {'7','8','9'},
  {'*','0','#'}
};
byte rowPins[ROWS] = {8, 7, 6, 5}; //connect to the row pinouts of the keypad
byte colPins[COLS] = {4, 3, 2}; //connect to the column pinouts of the keypad

Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );

=============================================================================

Tutorial:
1. Matrix Keypad Arduino Library

C11-3X4BLUE
139 Items