新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 80C51單片機(jī)程序(1)

80C51單片機(jī)程序(1)

作者: 時(shí)間:2016-11-22 來源:網(wǎng)絡(luò) 收藏
//80C51程序——單片機(jī)的點(diǎn)亮

#include //包含reg52.h頭文件

本文引用地址:http://m.butianyuan.cn/article/201611/319715.htm

#define uint unsigned int //宏定義uint的數(shù)據(jù)類型為unsigned int型
sbit D1=P1^2; //定義P1^2位
void main()
{

uintnum=50000;//定義num數(shù)據(jù)類型,并附初值
D1=0; //點(diǎn)亮發(fā)光二極管

while(num--);//延時(shí)
}

-------------------------------------------------------------------

#include //包含reg52.h頭文件

#define uint unsigned int //宏定義uint的數(shù)據(jù)類型為unsigned int型
sbit D1=P1^2; //定義P1^2位
void main()
{

while(1) //進(jìn)入死循環(huán)

{

D1=0; //點(diǎn)亮發(fā)光二極管

}
}

--------------------------------------------------------------------

#include //包含reg52.h頭文件

#define uint unsigned int //宏定義uint的數(shù)據(jù)類型為unsigned int型
void main()
{

uintnum=50000;//定義num數(shù)據(jù)類型,并附初值
P1=0xfe; //點(diǎn)亮發(fā)光二極管

while(num--);//延時(shí)




關(guān)鍵詞: 80C51單片機(jī)程

評論


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

關(guān)閉