用定時的方式控制流水燈亮滅
#include
#include
#define uchar unsigned char
uchar num=0;
init();
main() //用定時的方式控制流水燈亮滅
{
init();
while(1)
{
if(num==20) //每1s流水燈左移一次
{
P1=_crol_ (P1,1);
num=0;
TR0=0;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
TR0=1;
}
}
}
init()
{
EA=1;
ET0=1;
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;//定時50ms
TR0=1;
P1=0xfe;
}
void timer0() interrupt 1
{
num++;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
}
評論