实现1,让数码管从0-9,在8个数码管上循环显示,时间0,5s
2,让蜂鸣器以1hz频率响数码管工作正常,但是蜂鸣器却不是我想要的效果,它一直响
搭个顺风车再问一个,stc下载程序时,当开发板连接着电脑,看似一切正常,但是一不小心,不知发生了什么,就断开连接,数据线还能给开发板供电,但此时串口却不存在了,不管怎么搞都出不来,或许,重启可以,还有拔了插有时也起作用,不知什么原因,希望有人解答,3q
#include<reg52.h>
#define uchar unsigned char
#define uint unsigned int
void yanshi(uint);
sbit duan=P2^6;
sbit wei=P2^7;
sbit fmq=P1^4;
uchar code tableduan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0xff ,0x6f};
uchar code tablewei[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f};
uchar a,b,c;
void main ()
{
a=b=c=0;TMOD=1;EA=1;ET0=1;TH0=15536/256;TL0=15536%256;TR0=1;
while(1)
{ fmq=1;
yanshi(100); fmq=0; yanshi(100); }
}
void time() interrupt 1
{
TH0=15536/256;TL0=15536%256;a++;
if(a==10)
{ a=0; wei=1; P0=tablewei; wei=0; duan=1; P0=tableduan[c]; duan=0; b++; c++; if(b==8) b=0; if(c==10) c=0;
}
}
void yanshi(uint z)
{
uint d,e;for(d=z;d>0;d++)
for(e=1000;e>0;e++);
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
非常感谢,我把死循环哪里改了一下,就成功了。非常感谢你的程序,我会好好看的
是这里的原因,谢谢你
一周热门 更多>