百度知道 - 信息提示

日期:2025-01-13 07:48:37 人气:1

百度知道 - 信息提示

    A+
热门评论

间隔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) ; } } } }

阅读全文