基于51單片機的各種花樣的流水燈c51程序
/*-----------------------------------------------
功能:流水燈對稱移動閃爍(雙閃爍)
------------------------------------------------*/
#includeREG52.H>
#define uint unsigned int
void delay(uint);
main()
{
uint comp1=0xfe;
uint comp2=0x80;
P1=0x7e;
delay(30000);
while(1)
{
P1=0xff;
comp1=1;
comp1|=0x01;
comp2>>=1;
P1=comp1;
P1^=comp2;
delay(30000);
if(P1==0xe7)
{
comp1=1;
comp1|=0x01;
comp2>>=1;
}
if(comp1==0x7f)
{
comp1=0xfe;
comp2=0x80;
}
}
}
void delay(uint cnt)
{
while(cnt--);
}
/*-----------------------------------------------------------------
只循環(huán)一次,而沒有一直循環(huán)下去,出錯地方在:
通過添加一條測試語句:
if(comp1==0x7f)
{
comp1=0xfe; comp2=0x80;
P1=0x00; delay(30000);
}
發(fā)現(xiàn)if語句沒有被執(zhí)行,自然繼續(xù)左右移動:
1111 11111111 1111^0000 0000==11111 1111
所以看起來是執(zhí)行了一次while中的代碼。
具體為什么不行,還不清楚……
更正下列代碼后,能夠實現(xiàn)功能。
if(P1==0x7e)
{
comp1=0xfe;
comp2=0x80;
}
或者:
if(comp2==0x01)
{
comp1=0xfe;
comp2=0x80;
}
--------------------------------------------------------------*/
評論