C51 键盘扫描程序

时间:2014-01-19 01:55:40
【文件属性】:

文件名称:C51 键盘扫描程序

文件大小:2KB

文件格式:TXT

更新时间:2014-01-19 01:55:40

键盘扫描

unsigned char kbscan() { unsigned char sccode,recode; P1=0xf0; //发全“0”行扫描,列线输入 if(P1&0xf0)!=0xf0) //有键按下 { delay10ms(); //延时去抖动 if((P1&0xf0)!=0xf0) { sccode =0xf0; //逐行扫描初值 while((sccodeZ&0x10)!=0) { P1=sccode; //输出行扫描码 if((P1&0XF0)!=0XF0) //本行有键按下


网友评论

  • 写的不是很详细,,注释不全,就给了个程序