您的位置 首页 国产IC

PIC单片机完成流水灯

includepich>流水灯2009102822:00defineucharunsignedchardefineuintunsignedint__CONFIG(0x3B31);voiddela

#include//流水灯20091028 22:00

#define uchar unsigned char
#define uint unsigned int
__CONFIG(0x3B31);
void delay(uint x)
{
uint a,b;
for(a=x;a>0;a–)
for(b=110;b>0;b–);
}
void main()
{
uchar i,temp;
TRISA=0x00;
while(1)
{
temp=1;
for(i=0;i<6;i++)
{
PORTA=~temp;//

temp=temp<<1;//

delay(200);
}
}
}

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部