#include<pic.h>
#define uchar unsigned char
#define uint unsigned int
__CONFIG(0x3B31);
void delay_ms(uint z)//提供ms级延时函数,z ms
{
uchar x;
uint y;
for(x=110;x>0;x--)
for(y=z;y>0;y--);
}
void main()
{
TRISB=0xff;//11111111
TRISC=0;
if(RB0==0);
delay_ms(10);
if(RB0==0)
{
RC0=1;
}
while(1);
}
此帖出自
小平头技术问答
一周热门 更多>