用51单片机的矩阵键盘结合LCD1602设计密码锁时,输入密码与设置的密码一直但是提示错误,如果四位密码都一样则正确,麻烦各位大佬看看。
详细代码见
51单片机矩阵密码锁问题
问题描述:设置的密码和输入密码一致却显示错误。
程序如下:
#include <REGX52.H>
#include <LCD1602.H>
#include "Delay.H"
#include "MatrixKey.H"
void main()
{
unsigned char KeyNum=0;
unsigned char Password_1,Password_2,Password_3,Password_4;
unsigned char count=0;
LCD_Init();
while(1)
{
LCD_ShowString(1,1,"Password:");//LCD printf
KeyNum=MatrixKey();//scanf MatrixKey 把按键的值赋给KeyNum,
if(KeyNum!=0)//检测按键被按下
{
count++;
if(KeyNum<=10)//s1-s10 Input Password 密码区1-10
{
Password_1=KeyNum%10;//按键对应密码数字 第一位密码
Password_2=KeyNum%10;//第二位密码
Password_3=KeyNum%10;//第三位密码
Password_4=KeyNum%10;//第四位密码
}//四位密码
switch(count)
{
case 1:LCD_ShowNum(2,1,Password_1,1);break;
case 2:LCD_ShowNum(2,2,Password_2,1);break;
case 3:LCD_ShowNum(2,3,Password_3,1);break;
case 4:LCD_ShowNum(2,4,Password_4,1);break;
}
if(KeyNum==11)//按下第11个键确认输入的密码
{
if(Password_1==8&&Password_2==8&&Password_3==8&&Password_4==7)
{
LCD_ShowString(2,6,"Right!");
}
else
{
LCD_ShowString(2,6,"Wrong!");
}
}
/*if(KeyNum==12)//删除已经输入的密码
{
}*/
}
}
}
LCD实物显示如下:
但如果密码设置成8888,输入8888就能显示right
|