新聞中心

51單片機(jī)-IO口控制

作者: 時(shí)間:2016-11-18 來源:網(wǎng)絡(luò) 收藏
IO口控制的練習(xí)實(shí)驗(yàn)圖:

本文引用地址:http://2s4d.com/article/201611/315665.htm

對(duì)應(yīng)的練習(xí)題:

其實(shí)單片機(jī)很容易學(xué)會(huì)了就、控制IO口狀態(tài)就掌握了很大的部分,至于內(nèi)部資源它是很少很簡(jiǎn)單的,所以IO口是入手點(diǎn)也是基礎(chǔ)點(diǎn);以上7道題目完全用C51編程;

1:

#include
#define uint unsigned int
sbit d1=P2^0;
void delay(uint z)
{
uint i,j;
for(i=0;i<200;i++)
for(j=0;j }
void main()
{
while(1)
{
d1=0;
delay(82);
d1=!d1;
delay(82);
}
}

2:



關(guān)鍵詞: 51單片機(jī)IO口控

評(píng)論


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

關(guān)閉