polong_5
Newbie level 4
There are several thing that confuse me...anyone can help me here. is there PIC 16F877a can store memory by numeric keypad interfacing?? this inputs data are use for comparing input signal....
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
@cool man,
thanks for ur help. but problem is still here. can u tell me the exact syntex.
This is just an example,i dont know about mikroc so get the idea from above procedure and try to write in mikroc.int kp=0;
int array[10];
if(keypressed)
{
array[kp]=value;//variable value contains your keypad value.
kp++;
}
if(kp==10)
{
kp=0;
}