KEYPAD LCD MAIN PROGRAM JADI

Dependencies:   KeypadLib TextLCD mbed

Fork of 4x4KeyBoardExample by fitri ariffin

main.cpp

Committer:
fitri
Date:
2018-05-17
Revision:
2:6b74f02a9e87
Parent:
0:c72d94fc465d
Child:
3:f973bf5ad35d

File content as of revision 2:6b74f02a9e87:

#include "mbed.h"
#include "keypad.h"
 
Serial pc(USBTX, USBRX); 

 
int main() {
                //  c0   c1   c2   c3  r0   r1   r2   r3    
    Keypad keypad( PC_3,PC_2,PC_0,PC_1,PC_5,PC_4,PB_1,PA_0 );
       
    keypad.enablePullUp();
    char key;
    pc.printf("Please touch a key on the keypad\n\r");
    while (1) 
    {
         key = keypad.getKey();    
         if(key != KEY_RELEASED)
         {
             pc.printf("%c\r\n",key);
             wait(0.6);
         }
    }
}