您的位置 首页 电子

[C51代码]广告灯的循环移动

#includereg51.h>/************************************************/sbitKey=P2^0;staticunsignedchar

#include

/************************************************/
sbit Key=P2^0;
static unsigned char p=0;

void delay1ms(unsigned int count)
{
int x,y;
for(x=0;x for(y=0;y<120;y++);
}
/************************************************/
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< b=temp>>(8-p);
P0=a|b;
}
}
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/qiche/dianzi/275374.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部