welcome iCShop!     服務時間:週一 ~ 週五 9:00~12:00 / 13:00~17:00
Membrane 3x4 Matrix Keypad + extras

停售

Membrane 3x4 Matrix Keypad + extras

停售

Membrane 3x4 Matrix Keypad + extras

停售

Membrane 3x4 Matrix Keypad + extras

停售

Membrane 3x4 Matrix Keypad + extras

停售

Membrane 3x4 Matrix Keypad + extras
Membrane 3x4 Matrix Keypad + extras
Membrane 3x4 Matrix Keypad + extras
Membrane 3x4 Matrix Keypad + extras
Membrane 3x4 Matrix Keypad + extras

Membrane 3x4 Matrix Keypad + extras

NT$ 此商品已停售


產品貨號

368031001352

品牌

原廠貨號

419

數量


運送方式

7-11取貨付款 郵寄(單一運費) 宅配 宅配貨到付款 外島郵寄 順豐快遞 順豐快遞貨到付款

規格內容說明

DESCRIPTION
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. Check the tutorials tab for links to an Arduino library and example code.

We include a 7-pin extra-long header strip so you can plug this into a breadboard with ease.

 

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
    • 7-pin 0.1" pitch connector

There is a very nice Matrix Keypad Arduino library that works great with this item. The only thing we suggest is to change the initialization code in the examples to this:

#include "Arduino.h"
#include "Keypad.h"

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 );

This will swap the * and # keys and also let you connect to the Arduino to match this image