矩阵键盘,按相应的数字显示相应的数字,使用带返回值写法,返回扫描键盘在数码管显示
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit dula=P2^6;
sbit wela=P2^7;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71,0
};
uchar temp,num,num1;
void delay(uint z);
uchar keyscan();
void main()
{
num=17;
dula=1;
P0=0x00;
dula=0;
wela=1;
P0=0xc0;
wela=0;
while(1<