51单片机60秒倒计时 数码管显示
2021-11-26 来源:eefocus
本资源适用于初学者,使用单片机型号为普中51单片机:
下面展示 代码。
#include'reg52.h'
sbit LSA=P2^2;
sbit LSB=P2^3;
sbit LSC=P2^4;//38译码器控制位选
char code smgduan[17]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07, 0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
char a1,a2,s=60;//s为要定时 60秒
void timer0()
{ TMOD|=0x01;
TH0=0xfc;
TL0=0x18;//¶¨定时1MS
EA=1;
ET0=1;
TR0=1;
}
void setwei(char i) // 选择数码管的位选
{ switch(i)
{ case 0: LSA=1;LSB=1;LSC=1;break;
case 1: LSA=0;LSB=1;LSC=1;break;
case 2: LSA=1;LSB=0;LSC=1;break;
case 3: LSA=0;LSB=0;LSC=1;break;
case 4: LSA=1;LSB=1;LSC=0;break;
case 5: LSA=0;LSB=1;LSC=0;break;
case 6: LSA=1;LSB=0;LSC=0;break;
case 7: LSA=0;LSB=0;LSC=0;break;
}
}
void delay(int i)
{ while(i–);
}
void display(char w,char s) //w:要显示的数码管的位 s:要显示的数码管的数
{ setwei(w);
P0=smgduan[s];
delay(200);
P0=0x00;
}
void display1(char s1,char s2)
{ display(0,s1);
display(1,s2);
}
void main()
{ timer0();
while(1)
{ a1=s/10;
a2=s%10;
display1(a1,a2);
}
}
void timerint() interrupt 1
{ static int i=0;
TMOD|=0x01;
TH0=0xfc;
TL0=0x18;
i++;
if(i==1000)
{ i=0;
s–;
}
if(s<=0)
{s=60;}
}