找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 3423|回复: 1
收起左侧

单片机数码管矩阵按键控制

[复制链接]
ID:234344 发表于 2017-11-18 22:18 | 显示全部楼层 |阅读模式
QQ图片20171118221748.jpg QQ图片20171118221732.jpg
效果::每次按下的键对应的编码显示在数码管最后一位,之前的数码管显示的向左移动一位

单片机::stc89c52


代码:
  1. #include <REG52.h>
  2. typedef unsigned int uint;
  3. typedef unsigned char uchar;

  4. #define GPIO_DIG P0
  5. #define GPIO_KEY P1
  6. uint j=0,ii=1000,kk=0,pp;
  7. sbit LSA=P2^2;
  8. sbit LSB=P2^3;
  9. sbit LSC=P2^4;
  10. uchar  Key;
  11.    uint amd=0;
  12. uchar code  KKK[17]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71} ;
  13. uchar code app[]={0x00,0x04,0x08,0x0c,0x10,0x14,0x18,0x1c};        
  14. uchar amm[100];
  15. void delay(uint j)
  16. {
  17.   while(j--);
  18. }

  19. void KeyDown(void)
  20. {
  21.         char a=0;
  22.         GPIO_KEY=0x0f;
  23.         if(GPIO_KEY!=0x0f)
  24.         {
  25.                 delay(1000);
  26.                 if(GPIO_KEY!=0x0f)
  27.                 {
  28.                         GPIO_KEY=0x0f;        
  29.                 //行
  30.                 kk++;
  31.                         switch(GPIO_KEY)
  32.                         {
  33.                                  case(0x07):Key=0;break;
  34.                                   case(0x0b):Key=1;break;
  35.                                   case(0x0d):Key=2;break;
  36.                                  case(0x0e):Key=3;break;
  37.                         }  
  38.                 GPIO_KEY=0xf0;
  39.                
  40.                 //列
  41.                 switch (GPIO_KEY)
  42.                 {
  43.                          case(0x70):Key=Key+0;break;
  44.                          case(0xb0):Key=Key+4;break;
  45.                          case(0xd0):Key=Key+8;break;
  46.                          case(0xe0):Key=Key+12;break;
  47.                 }
  48.                 while((a<50)&&(GPIO_KEY= 0xf0))
  49.                 {
  50.                         delay(1000);
  51.                         a++;
  52.                 }
  53.         }
  54. }
  55. }

  56. void main()
  57. {
  58.         LSA=0;
  59.         LSB=0;
  60.         LSC=0;
  61.         while(1)
  62.         {
  63.                 KeyDown();
  64.                 if(kk==1)
  65.                 {
  66.                         P2=~app[0];
  67.                         GPIO_DIG= KKK[Key];
  68.                         amm[0]=KKK[Key];
  69.                 }
  70.                
  71.                 if(kk==2)
  72.                 {
  73.                          P2=~app[1];
  74.                          GPIO_DIG= amm[0];
  75.                          delay(100);
  76.                          P2=~app[0];
  77.                          GPIO_DIG= KKK[Key];
  78.                          amm[1]=KKK[Key];
  79.                          delay(100);
  80.                 }
  81.                 if(kk==3)
  82.                 {
  83.                         P2=~app[2];
  84.                         GPIO_DIG= amm[0];
  85.                         delay(100);
  86.                          P2=~app[1];
  87.                          GPIO_DIG= amm[1];
  88.                          delay(100);
  89.                          P2=~app[0];
  90.                           GPIO_DIG= KKK[Key];
  91.                           amm[2]=KKK[Key];
  92.                           delay(100);
  93.                 }        
  94.                 if(kk==4)
  95.                 {
  96.                         P2=~app[3];         
  97.                         GPIO_DIG= amm[0];
  98.                          delay(100);
  99.                          P2=~app[2];
  100.                         GPIO_DIG= amm[1];
  101.                          delay(100);
  102.                          P2=~app[1];
  103.                          GPIO_DIG=amm[2];
  104.                          delay(100);
  105.                          P2=~app[0];
  106.                           GPIO_DIG= KKK[Key];
  107.                           amm[3]=KKK[Key];
  108.                           delay(100);
  109.                 }
  110.                 if(kk==5)
  111.                 {
  112.                         P2=~app[4];
  113.                         GPIO_DIG= amm[0];
  114.                          delay(100);
  115.                           P2=~app[3];
  116.                          GPIO_DIG= amm[1];
  117.                          delay(100);
  118.                         P2=~app[2];
  119.                         GPIO_DIG= amm[2];
  120.                          delay(100);
  121.                          P2=~app[1];
  122.                          GPIO_DIG= amm[3];
  123.                          delay(100);
  124.                          P2=~app[0];
  125.                           GPIO_DIG= KKK[Key];
  126.                           amm[4]=KKK[Key];
  127.                           delay(100);
  128.                 }
  129.                 if(kk==6)
  130.                 {
  131.                         P2=~app[5];
  132.                         GPIO_DIG= amm[0];
  133.                          delay(100);
  134.                          P2=~app[4];
  135.                         GPIO_DIG= amm[1];
  136.                          delay(100);
  137.                           P2=~app[3];
  138.                          GPIO_DIG= amm[2];
  139.                          delay(100);
  140.                           P2=~app[2];
  141.                         GPIO_DIG= amm[3];
  142.                          delay(100);
  143.                          P2=~app[1];
  144.                          GPIO_DIG= amm[4];
  145.                          delay(100);
  146.                          P2=~app[0];
  147.                           GPIO_DIG= KKK[Key];
  148.                           amm[5]=KKK[Key];
  149.                           delay(100);}
  150.                 if(kk==7)
  151.                 {
  152.                         P2=~app[6];
  153.                         GPIO_DIG=amm[0];
  154.                          delay(100);
  155.                          P2=~app[5];
  156.                         GPIO_DIG= amm[1];
  157.                          delay(100);
  158.                          P2=~app[4];
  159.                         GPIO_DIG= amm[2];
  160.                          delay(100);
  161.                           P2=~app[3];
  162.                          GPIO_DIG= amm[3];
  163.                          delay(100);
  164.                            P2=~app[2];
  165.                         GPIO_DIG= amm[4];
  166.                          delay(100);
  167.                          P2=~app[1];
  168.                          GPIO_DIG= amm[5];
  169.                          delay(100);
  170.                          P2=~app[0];
  171.                           GPIO_DIG= KKK[Key];
  172.                           amm[6]=KKK[Key];
  173.                           delay(100);
  174.                         }
  175.                 if(kk==8)
  176.                 {  
  177.                         P2=~app[7];
  178.                         GPIO_DIG= amm[0];
  179.                          delay(100);
  180.                          P2=~app[6];
  181.                         GPIO_DIG=amm[1];
  182.                          delay(100);
  183.                          P2=~app[5];
  184.                         GPIO_DIG= amm[2];
  185.                          delay(100);
  186.                          P2=~app[4];
  187.                         GPIO_DIG= amm[3];
  188.                          delay(100);
  189.                         P2=~app[3];
  190.                          GPIO_DIG= amm[4];
  191.                          delay(100);
  192.                         P2=~app[2];
  193.                         GPIO_DIG= amm[5];
  194.                          delay(100);
  195.                          P2=~app[1];
  196.                          GPIO_DIG= amm[6];
  197.                          delay(100);
  198.                          P2=~app[0];
  199.                           GPIO_DIG= KKK[Key];
  200.                           amm[7]=KKK[Key];
  201.                           delay(100);
  202.                 }
  203.                  if(kk==9)
  204.                 {  

  205.                         P2=~app[7];
  206.                         GPIO_DIG= amm[1];
  207.                         delay(100);
  208.                          P2=~app[6];
  209.                         GPIO_DIG=amm[2];
  210.                          delay(100);
  211.                          P2=~app[5];
  212.                         GPIO_DIG= amm[3];
  213.                          delay(100);
  214.                          P2=~app[4];
  215.                         GPIO_DIG= amm[4];
  216.                          delay(100);
  217.                         P2=~app[3];
  218.                          GPIO_DIG= amm[5];
  219.                          delay(100);
  220.                         P2=~app[2];
  221.                         GPIO_DIG= amm[6];
  222.                          delay(100);
  223.                          P2=~app[1];
  224.                          GPIO_DIG= amm[7];
  225.                          delay(100);
  226.                          P2=~app[0];
  227.                           GPIO_DIG= KKK[Key];
  228.                            amm[8]=KKK[Key];
  229.                           delay(100);
  230.                  }
  231.                   if(kk>9)
  232.                   {
  233.                            amd++;
  234.                           P2=~app[7];
  235.                         GPIO_DIG= amm[kk-8];
  236.                          delay(100);
  237.                          P2=~app[6];
  238.                         GPIO_DIG=amm[kk-7];
  239.                          delay(100);
  240.                          P2=~app[5];
  241.                         GPIO_DIG= amm[kk-6];
  242.                          delay(100);
  243.                          P2=~app[4];
  244.                         GPIO_DIG= amm[kk-5];
  245.                          delay(100);
  246.                         P2=~app[3];
  247.                          GPIO_DIG= amm[kk-4];
  248.                          delay(100);
  249.                         P2=~app[2];
  250.                         GPIO_DIG= amm[kk-3];
  251.                          delay(100);
  252.                          P2=~app[1];
  253.                          GPIO_DIG= amm[kk-2];
  254.                          delay(100);
  255.                          P2=~app[0];
  256.                           GPIO_DIG= KKK[Key];
  257.                    amm[kk-1]=KKK[Key];
  258.                           delay(100);
  259.                   }
  260.           }
  261. }
复制代码






回复

使用道具 举报

ID:252128 发表于 2017-11-21 23:38 来自手机 | 显示全部楼层
楼主,你好,我有问题想问你,我今天刚好做这个实验,我可以加你吗?
回复

使用道具 举报

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

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

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