標題:
求各位幫我看一下我的程序哪里錯了,本程序的功能是4*4獨立按鍵的第一行4個按鍵
[打印本頁]
作者:
987sasa
時間:
2018-5-26 18:58
標題:
求各位幫我看一下我的程序哪里錯了,本程序的功能是4*4獨立按鍵的第一行4個按鍵
求各位幫我看一下我的程序哪里錯了,本程序的功能是4*4獨立按鍵的第一行4個按鍵,控制數(shù)碼管宣示0,1,2,3
#include<reg52.h>
#define uint unsigned int
#define uchar unsigned char
sbit dula=P2^6;
sbit wela=P2^7;
uchar num,temp;
uchar code table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,
0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
void delay (uint z)
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}
void main()
{
wela=1;
P0=0xc0;
wela=0;
dula=1;
P0=0;
dula=0;
while(1)
{
P3=0xfe;
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
delay(5);
temp=P3;
temp=temp&0xf0;
while(temp!=0xf0)
{
temp=P3;
switch(temp)
{
case 0xee:
num=1;
break;
case 0xde:
num=2;
break;
case 0xbe:
num=3;
break;
case 0x7e:
num=4;
break;
}
dula=1;
P0=table[num-1];
dula=0;
}
}
}
}
復制代碼
作者:
wenzedong
時間:
2018-5-26 19:51
寫得有些啰嗦了,把29,30,31相關(guān)的去掉,把延時改成10~15us,應該就沒問題了,再有問題你就找一個例程看看人家怎么寫的,還有,4*4的按鍵就不要叫獨立按鍵了,叫矩陣鍵盤
作者:
15942379927
時間:
2018-5-26 20:41
你將while(1)里面的語句中的while換成if 試一試
作者:
15942379927
時間:
2018-5-26 20:47
你的P3管腳都接的是什么?
作者:
987sasa
時間:
2018-5-26 22:08
15942379927 發(fā)表于 2018-5-26 20:47
你的P3管腳都接的是什么?
矩陣按鍵的接口
歡迎光臨 (http://www.torrancerestoration.com/bbs/)
Powered by Discuz! X3.1