LED流水灯

48 阅读1分钟
#include <REGX52.H>
#include <INTRINS.H>
void Delay500ms()		//@11.0592MHz
{
	unsigned char i, j, k;

	_nop_();
	i = 4;
	j = 129;
	k = 119;
	do
	{
		do
		{
			while (--k);
		} while (--j);
	} while (--i);
}
void main(){
	while(1){
		P2=0xFE;// 1111 1110
		Delay500ms();
		P2=0xFD;// 1111 1101 1+4+8
		Delay500ms();
		P2=0xFB;// 1111 1011 8+2+1
		Delay500ms();
		P2=0xF7;// 1111 0111 4+2+1
		Delay500ms();
		P2=0xEF;
		Delay500ms();
		P2=0xDF;
		Delay500ms();
		P2=0xBF;
		Delay500ms();
		P2=0x7F;
		Delay500ms();
	}
}