[C51代码]广告灯的循环移动
时间:11-10
来源:互联网
点击:
#include
P0=a|b;
}
}
}
/************************************************/
sbit Key=P2^0;
static unsigned char p=0;
void delay1ms(unsigned int count)
{
int x,y;
for(x=0;x
}
/************************************************/
void ScanKey()
{
if(Key==0)
{
delay1ms(1);
if(Key==0)
{
p++;
if(p==8) p=0;
}
while(Key==0); //按键锁定,每次按键只加1
}
}
/************************************************/
void main()
{
unsigned char i;
unsigned char a,b;
unsigned char temp=0x0f;
while(1)
{ ScanKey();
for(i=0;i<8;i++)
{
a=temp
P0=a|b;
}
}
}
C51代码广告灯循环移 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)