单片机数码管 我写了一个程序 想要让数码管加1,蜂鸣器响一声的程序 但是蜂鸣器是响了 数码管就不会显示了

2024年11月19日 20:29
有3个网友回答
网友(1):

你的蜂鸣是用循环来实现的,这时单片在循环,就不能运行显示的那部分,所以要用中断做。
用定时器t0中断控制蜂鸣时间长短,用t1定时器中断控制蜂鸣频率
这样就不影响显示

#include
#define uchar unsigned char
sbit BZ = P1^2;
uchar a,b,flag,time;
uchar code tab[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
void delay_ms(unsigned int ms) //1ms延时
{
while(ms--)
for(b=123;b>0;b--);
}

void disp();

void t0intinit()
{
TMOD=0x11;
TH0=0x3c;
TL0=0xb0;
TH1=0xfe;
TL1=0x0c;
EA=1;
ET0=1;
ET1=1;
TR0=1;
TR1=1;

}

void main(void)
{
t0intinit();
while(1)
{disp();
if(a==10)
a=0;
}
}

void disp( )
{
P0=tab[a];
P2=0;
delay_ms(1);
P2=1;

}

void t0int(void) interrupt 1
{
//uchar time;
TH0=0x3c;
TL0=0xb0;
time++;

if(time==40)
{
flag=1;
a++;
time=0;
}
if(time==20)
{flag=0;

}
}

void t1int(void) interrupt 3
{
TH1=0xfe;
TL1=0x0c;
if(flag==1)
BZ=~BZ;

}

网友(2):

显示部分执行的不够及时,所以数码管显示不出来,数码管显示应该也使用一个定时中断

网友(3):

123