这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » DIY与开源设计 » 电子DIY » shunzhidui MCU DIY 进程贴

共1条 1/1 1 跳转至

shunzhidui MCU DIY 进程贴

助工
2011-11-27 22:14:25     打赏

/**************************************
   程序名称:流水灯
   编译环境:keil-uvsion4
   操作系统:windows-xp
   程序功能:
   设计者:  shunzhidui
   时间:  2011年10月12日
**************************************/  
#include <reg52.h>
#include <intrins.h>
#define uchar unsigned char
unsigned char LED;
 void delay(uchar del)
{
  int i,j;
  for(i=0;i<del;i++)
   for(j=0;j<119;j++)
  ;
}
void main()
{
uchar i;
 while(1)
 {
 LED=0X7F;
 for(i=0;i<7;i++)
 {
 P0=LED;
 delay(200);
 LED=_crol_(LED,1);
 P0=0xff;
 delay(200);
 }
}
}




关键词: shunzhidui     进程    

共1条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]