百度知道 - 信息提示
间隔300ms第一次一个管亮流动一次,第二次两个管亮流动,依次到8个管亮,然后重复整个过程。
/*****************************看看这个行不,假设8个小灯与P0口相连*********************************/#include
#include
#define uint unsigned int
#define uchar unsigned char uint num , temp , i;void delay(uint z)
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}uint a[] = {0xfe , 0xfc , 0xf8 , 0xf0 , 0xe0 , 0xc0 , 0x80 , 0x00} ;
int main(void)
{ while(1)
{
for(i = 0 ; i < 8 ; i++)
{
temp = a[i] ;
P0 = temp ;
for(num = 0 ; num < (8 - i) ; num++)
{
P0 = temp ;
temp=_crol_(temp,1);
delay(300) ; }
}
}
}
单片机实现间隔300ms第一次一个管亮流动一次, 第二次两个管亮流动,依次到8个管亮, 然后重复整个过程。
用kei软件可以用c语言编写单片程序在通过lSTC-ISP V29 Beta5软件下载到单片机的! 给你看看我的一个小程序: //8个发光管来回流动,每个管亮100ms, /,