OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 14215|回复: 2

我的AVR资料[程序篇] 4X4矩阵按键扫描程序(源码11)

[复制链接]

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165352
金钱
165352
注册时间
2010-12-1
在线时间
2108 小时
发表于 2010-12-22 00:17:33 | 显示全部楼层 |阅读模式

这个程序,用来扫描4*4的矩阵键盘,并把得到的键值,显示在数码管上.也是非常有用的一段代码.
代码如下:
 #include <mega16.h>
#define uchar unsigned char
#define uint unsigned int

uchar right=1;//for key_scan variable
void delay(unsigned char time)//delay function
{
    unsigned char b;
  for(;time>0;time--)
 for(b=50;b>0;b--);
}
//digital number display function, the first parameter is the number you want to show
//the second parameter is the position of the number
void display(unsigned char number,unsigned char position);
unsigned char key_scan();
void systeminit()//a simple system initialization function
{
    DDRA=0Xff;//set PORTA output
    PORTA=0XFF;//set PORTA output in high level
}
void main(void)
{
    unsigned char b1,b2;
 uchar key;
 unsigned char t=0;
 systeminit();
 while(1)
 {
   key=key_scan();
   if(key!=16)t=key;
   b1=t%10;display(b1,8);delay(5);
   b2=(t/10)%10;display(b2,7);delay(5);
    }    
}        
//this function support icc and code vision avr
void display(unsigned char number,unsigned char position)//digtial show function
{  
    DDRA=0Xff;//set PORTA output
 ORTA=0XFF;//set PORTA output in high level
    switch(position)//choice the position
 {
  case 1:{PORTA&=0xf8;break;}
  case 2:{PORTA&=0xf9;break;}
  case 3:{PORTA&=0Xfa;break;}
  case 4:{PORTA&=0Xfb;break;}
  case 5:{PORTA&=0Xfc;break;}
  case 6:{PORTA&=0Xfd;break;}
  case 7:{PORTA&=0Xfe;break;}
  case 8:{PORTA&=0Xff;break;}
  } 
    switch(number)//show number
 {
  case 0:{PORTA&=0x87;break;}    //0
  case 1:{PORTA&=0x8f;break;}    //1
  case 2:{PORTA&=0x97;break;}    //2
  case 3:{PORTA&=0x9f;break;}    //3
  case 4:{PORTA&=0xa7;break;}    //4
     case 5:{PORTA&=0xaf;break;}    //5
  case 6:{PORTA&=0xb7;break;}    //6
  case 7:{PORTA&=0xbf;break;}    //7
  case 8:{PORTA&=0xc7;break;}    //8
     case 9:{PORTA&=0xcf;break;}    //9
  default:{PORTA=0xff;break;}    //null
 }       
}       
//this function support icc and code vision avr
unsigned char key_scan()     //check if key pressed

 uchar juder;
 uchar which;                   //scan which row
 uchar juder1=0;       //juder whether key-press undo
 DDRD=0X0F;//set low 4 output high 4 input
    PORTD=0XFF;//output high leve
    for(which=0;which<4;which++)
 { 
     juder=0;
     switch(which)//choice key row
  {
    case 0:{PORTD=0Xfe;break;}         //11111110
    case 1:{PORTD=0Xfd;break;}   //11111101
    case 2:{PORTD=0Xfb;break;}   //11111011
    case 3:{PORTD=0Xf7;break;}   //11110111
  }
  if(right)//get key number
  {
   while((PIND&0x80)==0)
   {
    juder++;
    if(juder>250){right=0;return(0+4*which);}
   }
   juder=0;
   while((PIND&0x40)==0)
   {
    juder++;
    if(juder>250){right=0;return(1+4*which);}
   }
   juder=0;
   while((PIND&0x20)==0)
   {
    juder++;
    if(juder>250){right=0;return(2+4*which);}
   }
   juder=0;
   while((PIND&0x10)==0)
   {
    juder++;
    if(juder>250){right=0;return(3+4*which);}
   }
  }
  else if((PIND&0x10)!=0&&(PIND&0x20)!=0&&(PIND&0x40)!=0&&(PIND&0x80)!=0)juder1++;
  else delay(1);//compensate
 }
 
 if(juder1==4)right=1;//make sure every time variable change only one time
 return 16;//if no key pull down return 16
}

我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

0

主题

1

帖子

0

精华

新手入门

积分
21
金钱
21
注册时间
2011-7-13
在线时间
0 小时
发表于 2011-7-14 22:16:52 | 显示全部楼层
老大用得吗??我移植到1768用不了
,急啊
回复 支持 反对

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165352
金钱
165352
注册时间
2010-12-1
在线时间
2108 小时
 楼主| 发表于 2011-7-15 00:07:16 | 显示全部楼层
 回复【2楼】pyy2010:
---------------------------------

可以用的,不过我这个是用在AVR的和1768不一样,你得改改底层.
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-24 17:55

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表