您的位置 首页 观点

单片机LED程序之二,使用定时器PWM完成LED的渐亮

程序来自网络,稍微修改了一下。includesbitLED_0=P0^0;sbitLED_1=P0^7;unsignedCount=0;unsignedi=0;voidTime

程序来自网络,略微修改了一下。

#include
sbit LED_0 = P0^0;
sbit LED_1 = P0^7;
unsigned Count = 0;
unsigned i = 0;
void Time_Init();
void main(void)
{
Time_Init();
LED_0 = 0;
LED_1 = 1;
while(1);
}
void Time_Init(void)
{
TMOD = 0x02; //¶¨Ê±Æ÷0, ·½Ê½2
TH0 = 0x9C;
TL0 = 0x9C;
EA = 1;
ET0 = 1;
TR0 = 1;
}
void INT_Time0() interrupt 1 using 1
{
Count++;
i++;
if (Count == 100) {Count = 0;}
if (1 + i == 99) {i = 0;}
if (Count > 1 + i)
{
LED_0 = 1;
LED_1 = 0;
}
else
{
LED_0 = 0;
LED_1 = 1;
}
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/news/guandian/260552.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部