Hi, can anyone kindly help me to interface keypad and lcd? keypad would be my input and lcd will display the number that i pressed. just a quick n simply guide will do. like :
int read_keypad()
{int i=0;
ROW1();
__delay_ms(10);
if (C1==1) i=i+1;
if (C2==1) i=i+2;
if (C3==1) i=i+3;
if (C4==1) i=i+4;
but how do i display it in the lcd the number that i've pressed? pls help