试验程序
/*
说明:LED按设定的时间间隔闪烁
*/
#include<reg51.h>
sbit LED=P1^0;
//延时
void DelayMS(uint x)
{
unsigned char i;
while(x--)
{
for(i=0;i<120;i++);
}
}
//主程序
void main()
{
while(1)
{
LED=~LED;
DelayMS(150);
}
}
编译之后使用Protues仿真通过,大家可以通过修改延时参数来改变闪烁频率
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |