/****************************************************************************
kbd_keys.h
This file define the keyboard map definitions.
This file is included at the begining of kbd.c
****************************************************************************/
//------------------------ Keyboard Map Definition ------------------------
char const KEYS[KBD_LINES][KBD_COLS] = {{'1','2','3'},
{'4','5','6'},
{'7','8','9'},
{'*','0','#'}};
//--------------------- End of Keyboard Map Definition ---------------------