原创 AVR学习日志(十七)-- 数码管显示4×4键盘矩阵按键

2010-6-6 20:16 4685 4 4 分类: MCU/ 嵌入式


    来个数码显示的矩阵键盘


/******************************************************************
//文件名称:Key_dsy
//功    能:4X4矩阵键盘控制数码管显示
//作    者:懒猫爱飞
//日    期:2010.05.25
*******************************************************************/
#include<iom8515v.h>
#include<macros.h>


#define uchar unsigned char
#define uint  unsigned int


//宏定义左移,右移函数crol为循环左移,cror为循环右移
#define crol(a,n) a=(a<<n)|(a>>(8-n))
#define cror(a,n) a=(a>>n)|(a<<(8-n))


#define Bit(n) (1<<n)


#define Beep_off()  PORTC&=~Bit(0)
#define Beep_on() PORTC|=Bit(0)


uint Key_num=20;


const uchar Dis_code_cp[]=
{
  0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,
 0x88,0x83,0xc6,0xa1,0x86,0x8e,0xbf,0xff//共阳极0.1.2.3.4.5.6.7.8.9.A.b.C.d.E.F.-
};
const uchar Dis_code_cn[]=
{
  0x3f,0x06,0x5b,0x4f,0X66,0x6d,0x7d,0x07,0x7f,0x6f,
 0x77,0x7c,0x39,0x5e,0x79,0x71,0X40,0X00//共阴极0.1.2.3.4.5.6.7.8.9.A.b.C.d.E.F.-
};


/****************************************************************
//函数名称: delay(void)
//功    能:延时
//入口参数:无
//出口参数:无
*****************************************************************/
void delay(void)
{
 uint i;
 for(i=1;i<100;i++)
    ;
}


/****************************************************************
//函数名称:delay_1ms(void)
//功    能:延时1ms
//入口参数:无
//出口参数:无
*****************************************************************/
void delay_1ms(void)//1ms
{
 uint i;
 for(i=1;i<(uint)(8*143-2);i++)
    ;
}
/****************************************************************
//函数名称:delay_ms(uint time)
//功    能:延时time ms
//入口参数:time
//出口参数:无
*****************************************************************/
void delay_ms(uint time)//time*1ms
{
   uint i="0";
   while(i<time)
   {
   delay_1ms();
    i++;
   }
}
/****************************************************************
//函数名称:Port_init(void)
//功    能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void Port_init(void)
{
 DDRA  = 0xff;   //A口输出口,控制数码管
 PORTA = 0x00;
 
 DDRB  = 0x00;         //B口高阻状态
 PORTB = 0x00;
 
 DDRC  = 0xff;   //C口
 PORTC = 0x00;
 
 DDRD  = 0xf0;   //D口低四位输入,置高电平,高四位输出,置低电平
 PORTD = 0x00;
}
/****************************************************************
//函数名称:beep(void)
//功    能:蜂鸣
//入口参数:无
//出口参数:无
*****************************************************************/
void beep_sud(void)
{
 Beep_on();
 delay_ms(50);
 Beep_off();
}
/****************************************************************
//函数名称:uchar Key_scan(void)
//功    能:键盘扫描,读取键值
//入口参数:无
//出口参数:无
*****************************************************************/
uchar Key_scan(void)
{
    uchar i,j;
 DDRD = 0xf0;           //设置PD高四位为输出口,低四位为输入口
 PORTD = 0x0f;         // 初始运行输出全为0x0f
 if((PIND & 0x0f) == 0x0f) return 20;   // 判断有无按键动作,没有,返回20    
 else
 {
  delay_ms(10);                     //按键消抖
  if((PIND & 0x0f) == 0x0f) return 20;      //再次判断是否有按键动作
  else
  {
   for(i = 4;i < 8;i++)                //逐行输出0
   {
    PORTD = ~(1 << i) | 0x0f;      //第i行输出0
    for(j = 0;j < 4;j++)
    {
     if((PIND & (1 << j)) == 0)        //逐列检测
     Key_num= (i - 4) * 4 + j;      //计算键值
    }
   }
  beep_sud();
  return Key_num;       //返回键值
  }
 }
}
/****************************************************************
//函数名称:Led_display(void)
//功    能:Led显示控制
//入口参数:无
//出口参数:无
*****************************************************************/
void Led_display(void)
{
 PORTA=Dis_code_cn[Key_num+1];
}
/****************************************************************
//函数名称:main(void)
//功    能:主程序
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
 //#define debug1
 #ifdef debug1
  Key_num=2;//测试函数Led_display()是否可用
 #endif
 
 Port_init();
 while(1)
 {
 
// #define buzze
 #ifdef buzze
  beep_sud();//测试函数beep_sud()是否可用
 #endif
 
 Key_scan();
 Led_display();
 }
}


 


每天进步一点点,开心多一点^_^


 

文章评论0条评论)

登录后参与讨论
我要评论
0
4
关闭 站长推荐上一条 /2 下一条