單片機C語言程序設(shè)計:從左到右的流水燈程序
/* 名稱:從左到右的流水燈
說明:接在 P0 口的 8 個 LED
從左到右循環(huán)依次點亮,產(chǎn)生走
馬燈效果
*/
#include<reg51.h>
#include<intrins.h>
#define uchar unsigned char
#define uint unsigned int
//延時
void DelayMS(uint x)
{
uchar i;
while(x--)
{
}
}
for(i=0;i<120;i++);
//主程序
void main()
{
P0=0xfe;
while(1)
{
P0=_crol_(P0,1); //P0 的值向左循環(huán)移動
DelayMS(150);
}
}