写一个基于c的52单片机数码管按键加一减一的程序
时间: 2024-05-12 22:18:02 浏览: 105
单片机C语言实例数码管显示
你好!对于你的问题,我可以回答。以下是一份基于C语言的52单片机数码管按键加一减一的程序:
```c
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
uchar code table[] = {0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
uchar num = 0;
void main()
{
P0 = table[num];
while(1)
{
if(P3 & 0x01 == 0)
{
delay();
if(P3 & 0x01 == 0)
{
num++;
if(num > 9)
{
num = 0;
}
P0 = table[num];
}
}
if(P3 & 0x02 == 0)
{
delay();
if(P3 & 0x02 == 0)
{
num--;
if(num < 0)
{
num = 9;
}
P0 = table[num];
}
}
}
}
void delay()
{
uint i,j;
for(i=0;i<1000;i++)
{
for(j=0;j<100;j++) {}
}
}
```
当按下P3.0时,num会加一并显示在数码管上,当按下P3.1时,num会减一并显示在数码管上。该程序需要一个延时函数delay(),它用于限制按键的反弹。
阅读全文