程序如下,要在数码管上显示0-999.位选锁存器是74hc138。
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
uchar a,bai,shi,ge;
uint temp;
uchar code table[]={
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f};
void init();
void display(uchar bai,uchar shi,uchar ge);
void delay(uchar z);
void main()
{
init();
while(1)
{
if(a==20)
{
a=0;
temp++;
if(temp==1000)
{
temp=0;
}
}
bai=temp/100;
shi=temp%100/10;
ge=temp%10;
display(bai,shi,ge);
}
}
void init()
{
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
TR0=1;
}
void
timer0() interrupt 1
{
TH0=(65535-50000)/256;
TL0=(65535-50000)%256;
a++;
}
void display(uchar bai,uchar shi,uchar ge)
{
P0=table[bai];
P2=0;
delay(1);
P0=table[shi];
P2=1;
delay(1);
P0=table[ge];
P2=2;
delay(1);
}
void delay(uchar z)
{
uchar i,j;
for(i=z;i>0;i--)
for(j=110;j>0;j--);
}
能解释下a在这里的作用吗?还有那个延时函数在这里有什么用?不加上它行吗?
如果有电路板的话,你可以自己试试不同的延时时间。
能不能详细解释一下啊,程序在运行到P0=table[ge];P2=2;时,数码管就开始亮了,然后等到下一个中断的到来,那这个延时函数没什么作用啊;
还有你能不能解释一下在控制位选的时候,为什么直接把2或者1这类的赋给了p2,刚开始时p2=0,然后又是p2=1,那百位上的不就不亮了吗?求解释,本人菜鸟啊。
一周热门 更多>