电路原理图
程序
#include #define uint unsigned int
#define uchar unsigned char
//函数声明
void delay(uint time); //延时函数
void display(uchar k); //数码管显示0-F以及LED灯的亮灭
uchar getKey(); //读取键盘的数值
//主程序
void main(){
uchar keyValue;
while(1){
keyValue = getKey(); //读取键盘值
display(keyValue); //数码管显示&LED亮灭
}
}
void delay(uint time)
{
uint i,j;
for(i = 0; i