單片機程序-利用C52庫函數實現(xiàn)左右流水燈
下面是程序源代碼:
/***********左右流水燈**************/
/**
*功能:利用C52庫函數實現(xiàn)左右流水燈
* 方法一:goto 語句實現(xiàn)之
* 方法二: 順序實現(xiàn)之
* 方法三: 順序和goto語句實現(xiàn)之
*日期:2013-06-16-09:00-09:40
*備注:程序已通過調試
**/
/*********AT89C52-RC MCU*************/
/***********HL-1 開發(fā)板***********/
#include
#include
typedef unsigned int uint;
typedef unsigned char uchar;
void delay(uint xms)
{
uint x, y;
for(x = xms; x > 0; x--)
for(y = 110; y > 0; y--);
}
/**********方法1************/
/*
void main(void)
{
uchar temp, temp1, i;
/******流水燈向左流動********/
/*
loop1: while(1)
{
P1 = 0xfe;
for(i = 0; i < 7; i++)
{
temp = P1;
temp = _crol_(temp, 1);
P1 = temp;
delay(200);
}
goto loop;
}
/******流水燈向右流動********/
/*
loop: while(1)
{
P1 = 0x7f;
for(i = 0; i < 7; i++)
{
temp1 = P1;
temp1 = cror_(temp1, 1);
P1 = temp1;
delay(200);
}
goto loop1;
}
}
*/
/**********方法2************/
/*
void main(void)
{
uchar temp, i;
P1 = 0xfe;
while(1)
{
P1 = 0xfe;
temp = P1;
/******流水燈向左流動********/
/*
for(i = 0; i < 7; i++)
{
temp = _crol_(temp, 1);
P1 = temp;
delay(200);
}
/******流水燈向右流動********/
/*
P1 = 0x7f;
temp = P1;
for(i = 0; i < 7; i++)
{
temp = _cror_(temp, 1);
P1 = temp;
delay(200);
}
}
}
*/
/**********方法3***********/
void main(void)
{
uchar temp, i;
while(1)
{
P1 = 0xfe;
temp = P1;
/******流水燈向左流動********/
for(i = 0; i < 7; i++)
{
temp = _crol_(temp, 1);
P1 = temp;
delay(200);
if(i >= 7)
goto loop;
}
/******流水燈向右流動********/
loop: P1 = 0x7f;
temp = P1;
for(i = 0; i < 7; i++)
{
temp = _cror_(temp, 1);
P1 = temp;
delay(200);
}
}
}
評論