新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > 單片機LED程序之二,利用定時器PWM實現(xiàn)LED的漸亮

單片機LED程序之二,利用定時器PWM實現(xiàn)LED的漸亮

作者: 時間:2016-11-24 來源:網(wǎng)絡(luò) 收藏
程序來自網(wǎng)絡(luò),稍微修改了一下。
#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;
}
}


關(guān)鍵詞: 單片機LED程序定時器PW

評論


技術(shù)專區(qū)

關(guān)閉