Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: 4x4KeyBoardExample xoxokey 4x4KeyBoardExample ProgettoCassaforte ... more
Fork of keypad by
You are viewing an older revision! See the latest version
Homepage
Simple library for reading a 4x4 keypad width at ability to use internal pullups
Import program
00001 #include "mbed.h" 00002 #include "keypad.h" 00003 00004 Serial pc(USBTX, USBRX); 00005 00006 00007 int main() { 00008 // c0 c1 c2 c3 r0 r1 r2 r3 00009 Keypad keypad( PC_3,PC_2,PA_0,PA_1,PA_4,PB_0,PC_1,PC_0 ); 00010 00011 keypad.enablePullUp(); 00012 char key; 00013 pc.printf("Please touch a key on the keypad\n\r"); 00014 while (1) 00015 { 00016 key = keypad.getKey(); 00017 if(key != KEY_RELEASED) 00018 { 00019 pc.printf("%c\r\n",key); 00020 wait(0.6); 00021 } 00022 } 00023 }
