流水灯是许多初学者学习的一个程序,能够这么说是一个必学程序,举个很简略的它的使用,许多生产线都需求用到左移,右移的操作,或许流水灯的程序便是最简略的,也称得上比较经典的比如吧。
程序:#include
#include
#define uni unsigned int
#define unc unsigned char
void delay(int);
unc tems;
void main()
{
tems = 0xfe;
P1 = tems;//给P1口赋值
while(1)
{
tems = _cror_(tems,1);//移位操?
delay(300);
P1 = tems;
}
}
void delay(int z)//延时子程序
{
uni x,y;
for(x=z;x>0;x–)
for(y=500;y>0;y–);
}