標(biāo)題:
51單片機(jī)流水燈程序
[打印本頁(yè)]
作者:
3486628zhang
時(shí)間:
2017-4-15 20:50
標(biāo)題:
51單片機(jī)流水燈程序
#include <reg51.h>
void Delay10ms(unsigned int c);
void main()
{
while(1)
{
P0 = 0x00
Delay10ms(50)
P0 = 0xff;
Delay10ms(50)
}
}
void Delay10ms(unsigned int c)
{
unsigned char a, b;
for (;c>0;c--)
{
for (b=38;b>0;b--)
{
for (a=130;a>0;a--);
}
}
}
歡迎光臨 (http://www.torrancerestoration.com/bbs/)
Powered by Discuz! X3.1