//有個題目,要求順序按下四個按鍵。
//如果不按照指定的次序來按,將顯示出錯誤提示。
//要求如下:
//第一次、SW1 按住時 D1 亮,松開時 D1 滅(如第一次按的不是 SW1,是SW2、3、4的話,D5 常亮);
//第二次、SW2 按住時 D2 亮,松開時 D2 滅(如第二次按的不是 SW2,是SW1、3、4的話,D5 常亮);
//第三次、SW3 按住時 D3 亮,松開時 D3 滅(如第三次按的不是 SW3,是SW1、2、4的話,D5 常亮);
//第四次、SW4 按住時 D4 亮,松開時 D4 滅(如第四次按的不是 SW4,是SW1、2、3的話,D5 常亮)。
//第四次、當(dāng) SW4 松開后 D6 常亮。
//這要求,有些像輸入密碼。
//但是,不是很嚴(yán)格,顯示出錯了也不禁止按鍵。
//本題目的仿真電路如下:
//圖片鏈接:
//http://xiangce.baidu.com/picture/detail/0d1e899900dfde5d2d8410c3670772bfcb4035d4
//做而論道編寫的程序如下:
#include
sbit D1 = P0^0;
sbit D2 = P0^1;
sbit D3 = P0^2;
sbit D4 = P0^3;
sbit D5 = P2^0;
sbit D6 = P2^1;
sbit SW1 = P1^0;
sbit SW2 = P1^1;
sbit SW3 = P1^2;
sbit SW4 = P1^3;
//--------------------------------------------
void delay(int x)
{
? ? int i;
? ? while(x--) ?for(i = 115; i > 0; i--);
}
//--------------------------------------------
main()
{
? ? D1 = D2 = D3 = D4 = D5 = D6 = 1; ? ?//關(guān)閉
? ? while(1) {
//------------------------------------------------------------------------
? ? ? D1 = D2 = D3 = D4 = 1; ? ? ? //關(guān)閉
? ? ? while(1) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //循環(huán)
? ? ? ? while((SW1) && (SW2) && (SW3) && (SW4)); //等待按鍵
? ? ? ? delay(10); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //延時
? ? ? ? if((!SW1) || (!SW2) || (!SW3) || (!SW4)) ?break; //有任意一個按鍵,就跳出循環(huán)
? ? ? }
? ? ? if (!SW1) { D1 = 0; while (!SW1);} ? ? ? ? //D1亮、等待釋放
? ? ? else { D5 = 0; while((!SW2) || (!SW3) || (!SW4));} //D5亮、等待釋放
//------------------------------------------------------------------------
? ? ? D1 = D2 = D3 = D4 = 1; ? ? ? //關(guān)閉
? ? ? while(1) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //循環(huán)
? ? ? ? while((SW1) && (SW2) && (SW3) && (SW4)); //等待按鍵
? ? ? ? delay(10); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //延時
? ? ? ? if((!SW1) || (!SW2) || (!SW3) || (!SW4)) ?break; //有任意一個按鍵,就跳出循環(huán)
? ? ? }
? ? ? if (!SW2) { D2 = 0; while (!SW2);} ? ? ? ? //D2亮、等待釋放
? ? ? else { D5 = 0; while((!SW1) || (!SW3) || (!SW4));} //D5亮、等待釋放
//------------------------------------------------------------------------
? ? ? D1 = D2 = D3 = D4 = 1; ? ? ? //關(guān)閉
? ? ? while(1) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //循環(huán)
? ? ? ? while((SW1) && (SW2) && (SW3) && (SW4)); //等待按鍵
? ? ? ? delay(10); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //延時
? ? ? ? if((!SW1) || (!SW2) || (!SW3) || (!SW4)) ?break; //有任意一個按鍵,就跳出循環(huán)
? ? ? }
? ? ? if (!SW3) { D3 = 0; while (!SW3);} ? ? ? ? //D3亮、等待釋放
? ? ? else { D5 = 0; while((!SW1) || (!SW2) || (!SW4));} //D5亮、等待釋放
//------------------------------------------------------------------------
? ? ? D1 = D2 = D3 = D4 = 1; ? ? ? //關(guān)閉
? ? ? while(1) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //循環(huán)
? ? ? ? while((SW1) && (SW2) && (SW3) && (SW4)); //等待按鍵
? ? ? ? delay(10); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //延時
? ? ? ? if((!SW1) || (!SW2) || (!SW3) || (!SW4)) ?break; //有任意一個按鍵,就跳出循環(huán)
? ? ? }
? ? ? if (!SW4) { D4 = 0; while (!SW4); D4 = 1; D6 = 0;} //D4亮、等待釋放、D6亮
? ? ? else { D5 = 0; while((!SW1) || (!SW2) || (!SW3));} //D5亮、等待釋放
//------------------------------------------------------------------------
? ? ? while(1); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //按鍵到此為止
? ? }
}
//按照提問者追加的要求,本程序,增加了按鍵消抖的部分,便于用硬件實驗。