標(biāo)題:
51單片機(jī)實(shí)現(xiàn)點(diǎn)陣"心"
[打印本頁]
作者:
ZDWiFi
時(shí)間:
2019-12-16 09:48
標(biāo)題:
51單片機(jī)實(shí)現(xiàn)點(diǎn)陣"心"
#include <reg51.h>
void delay1ms();
void main()
{
unsigned char w,i;
unsigned char led[ ]={0xff,0x99,0x66,0x7e,0xbd,0xdb,0xe7,0xff};
while(1) { w=0x01;
for(i=0;i<8;i++)
{
P0=w;
P2=led[ i];
delay1ms();
w=w<<1;
}
}
}
void delay1ms()
{
unsigned char i;
for(i=0;i<0x10;i++);
}
-3ea531e79b9065a7.png
(34.01 KB, 下載次數(shù): 57)
下載附件
2019-12-16 09:47 上傳
歡迎光臨 (http://www.torrancerestoration.com/bbs/)
Powered by Discuz! X3.1