|
很多人还不会写流水灯的51 程序代码,我在这里附上代码和图片
需要的软件:Keil uVision4、stc-isp
软件均已上传在http://www.stcmcu.com/
开发环境IDE的详细步骤在http://www.51hei.com/mcu/3466.html
#include< REG51.h >
#include< stdio.h >
sbit p0=P1^0;
sbit p1=P1^1;
sbit p2=P1^2;
sbit p3=P1^3;
sbit p4=P1^4;
sbit p5=P1^5;
sbit p6=P1^6;
sbit p7=P1^7;
void delay (unsigned t){
unsigned char n;
for(;t>0;t--)
for(n=0;n<125;n++)
{;}
}
void main (void){
while(1){
p0=1;
delay(1000);
p0=0;
p1=1;
delay(1000);
p1=0;
p2=1;
delay(1000);
p2=0;
p3=1;
delay(1000);
p3=0;
p4=1;
delay(1000);
p4=0;
p5=1;
delay(1000) ;
p5=0;
p6=1;
delay(1000) ;
p6=0;
p7=1;
delay(1000) ;
p7=0;
}
printf("hello");
printf("Hello I am KEIL. \n");//打印程序执行的信息
printf("I will be your friend.\n");
}
|
|