2011年11月28日 下去16时 拿到开发板,准备购买元器件
1、流水灯实验(从左到右)
程序如下:include <reg52.h>
void delay(unsigned int cnt)
{
while(--cnt);
}
main()
{
P1=0xfe;
while(1)
{
delay(30000
P1<<=1;
P1|=0x01;
if(P1==0x7f)
{
delay(30000);
P1=0xfe;
}
}
}