您的位置 首页 数字

PIC16F877A例程–LED

includepich>调用头文件includepic1687xh>__CONFIG(0x3F32);芯片配置字typedefunsignedcharuchar;typedefun

#include //调用头文件

#include

__CONFIG(0x3F32); //芯片装备字

typedef unsigned char uchar;

typedef unsigned int uint;

void delay(uint z);

void main (void)

{

uchar temp;

TRISA=0XC0; //RA0-RA5设为输出驱动六个LED

for(;;)

for(temp=0xfe;temp!=0x80;temp<<=1)

{

PORTA=temp;

delay(1000);

}

}

void delay(uint z )

{

uint x,y;

for(x=z;x–;x>0)

for(y=40;y–;y>0);

}

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

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

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

微信扫一扫关注我们

返回顶部