|
單片機(jī)C語言實(shí)例-294-用指針數(shù)組控制P0口8位LED流水點(diǎn)亮
//實(shí)例27:用指針數(shù)組控制P0口8位LED流水點(diǎn)亮
#include<reg51.h>
/*************************************************
函數(shù)功能:延時(shí)約150ms (3*200*250=150 000μs=150ms
*************************************************/
void delay150ms(void)
{
unsigned char m,n;
for(m=0;m<200;m++)
for(n=0;n<250;n++)
;
}
/*************************************************
函數(shù)功能:主函數(shù)
*************************************************/
void main(void)
{
unsigned char code Tab[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f};
unsigned char *p[ ]={&Tab[0],&Tab[1],&Tab[2],&Tab[3],&Tab[4],&Tab[5],
&Tab[6],&Tab[7]};
unsigned char i; //定義無符號字符型數(shù)據(jù)
while(1)
{
for(i=0;i<8;i++)
{
P0=*p;
delay150ms();
}
}
}
更多詳情參考附件文檔
+08:00C149聯(lián)盟網(wǎng)3699.png (10.31 KB, 下載次數(shù): 0)
下載附件
保存到相冊
2022-3-23 10:34 上傳
|
|