四開關(guān)驅(qū)動LED燈
通過撥動開關(guān)控制LED亮滅;
說明:
接上拉電阻和電壓5V和IO接通,原理:IO高時(shí) 電壓接近5V電路相當(dāng)于斷路;IO低時(shí),電路導(dǎo)通,如圖二極管就可以點(diǎn)亮;
C51代碼:
#include
sbit P2_0=P2^0;
sbit P2_1=P2^1;
sbit P2_2=P2^2;
sbit P2_3=P2^3;
sbit P2_4=P2^4;
sbit P2_5=P2^5;
sbit P2_6=P2^6;
sbit P2_7=P2^7;
void main(void)
{
while(1)
{
if(P2_4==0)
P2_0=0;
else
P2_0=1;
if(P2_5==0)
P2_1=0;
else
P2_1=1;
if(P2_6==0)
P2_2=0;
else
P2_2=1;
}
if(P2_7==0)
{
P2_3=0;
}
else
{
P2_3=1;
}
}
}
評論