程序如下,要在数码管上显示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在这里的作用吗?还有那个延时函数在这里有什么用?不加上它行吗?
点亮数码管的程序是在主函数里,中断函数并没有这些操作。
主函数执行的是一个循环程序,看似3个数码管是一个一个点亮的,但是由于执行速度很快,人眼是分不出来的,这个利用了传说中的视觉暂留效应。你如果把那个延时时间加到足够大,就会看到数码管一个一个亮了。
每过一秒,数码管自动加1显示,有点类似秒表的功能。
一周热门 更多>