找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 2370|回复: 0
收起左侧

16按键值单片机双机通信显示

[复制链接]
ID:354098 发表于 2018-6-19 10:36 | 显示全部楼层 |阅读模式
AT89C51单片机双机通信
QQ截图20180619103515.png
主机程序
  1. #include<reg51.h>
  2. #define shuchu0 P0        
  3. #define shuchu2 P2
  4. #define KEY P1
  5. //unsigned char code num[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x7f};           
  6. unsigned char code num[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e};          //共yang数码管

  7. unsigned char KeyValue;          //返回按键值
  8. int i;
  9. void Delay10ms(unsigned int c);    //延时10ms
  10. void KeyDown();                 //检测按键函数


  11. void main(void)
  12. {

  13.         while(1)
  14.         {
  15.                         unsigned char temp=0;
  16.                         KeyDown(); //运行按键扫描函数,返回按键值KeyValue=0,1,2到15
  17.                         TMOD=0x20;        //设置定时器T为方式2                                                
  18.                         TH1=0xfd;         //波特率9600
  19.                         TL1=0xfd;
  20.                         SCON=0x40;          //串口初始化方式1发送,不接受
  21.                         PCON=0x00;           //SMOD=0,方式2,波特率=187.5kbit/s 波特率仅与SMOD的值有关           波特率选择位
  22.                         TR1=1;                   //启动T1
  23.         
  24.                 i=KeyValue;
  25.                 if(i<=9)
  26.                 {
  27.                          shuchu0 = num[0];
  28.                          shuchu2 = num[KeyValue];
  29.                 }
  30.                 else
  31.                 {
  32.                         i=i-10;
  33.                         shuchu0 = num[1];
  34.                         shuchu2 = num[i];

  35.                 }
  36.                 while(1){           
  37.                                         temp=KeyValue;         //读入按键值
  38.                                         SBUF=temp;                  //数据串行口发送
  39.                                         while(TI==0);                //如果TI=0,位发送完,循环等待
  40.                                                 TI=0;                         //数据发送完成,把TI清零
  41.                                         break;
  42.                                 }                                         
  43.           }
  44.         
  45.                                 
  46. }

  47. /*******************************************************************************
  48. * 函 数 名         : KeyDown
  49. * 函数功能                   : 检测有按键按下并读取键值
  50. * 输    入         : 无
  51. * 输    出         : 无
  52. *******************************************************************************/

  53. void KeyDown(void)
  54. {
  55.         char a = 0;
  56.         KEY=0x0f;
  57.         if(KEY!=0x0f)//读取按键是否按下
  58.         {
  59.                 Delay10ms(1);//延时10ms进行消抖
  60.                 if(KEY!=0x0f)//再次检测键盘是否按下
  61.                 {
  62.                         
  63.                         //测试列
  64.                         KEY=0X0F;
  65.                         switch(KEY)
  66.                         {
  67.                                 case(0X07):        KeyValue=0;break;
  68.                                 case(0X0b):        KeyValue=4;break;
  69.                                 case(0X0d): KeyValue=8;break;
  70.                                 case(0X0e):        KeyValue=12;break;
  71.                         }
  72.                         //测试行
  73.                         KEY=0XF0;
  74.                         switch(KEY)
  75.                         {
  76.                                 case(0X70):        KeyValue=KeyValue+3;break;
  77.                                 case(0Xb0):        KeyValue=KeyValue+2;break;
  78.                                 case(0Xd0): KeyValue=KeyValue+1;break;
  79.                                 case(0Xe0):        KeyValue=KeyValue;break;
  80.                         }
  81.                         while((a<50) && (KEY!=0xf0))         //检测按键松手检测
  82.                         {
  83.                                 Delay10ms(1);
  84.                                 a++;
  85.                         }
  86.                 }
  87.         }
  88. }


  89. void Delay10ms(unsigned int c)   
  90. {
  91.     unsigned char a, b;
  92.     for (;c>0;c--)
  93.         {
  94.                 for (b=38;b>0;b--)
  95.                 {
  96.                         for (a=130;a>0;a--);
  97.                 }         
  98.         }      
  99. }


  100. 从机程序
  101. #include<reg51.h>  
  102. unsigned char code num[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e};          //共yang数码管
  103. unsigned char i;
  104. #define shuchu0 P0        
  105. #define shuchu2 P2
  106. void main(void)
  107. {
  108.          while(1){
  109.                 unsigned char temp=0;
  110.                 TMOD=0x20;                          //设置串口为方式1接收,REN=1,REN允许串行接收位
  111.                 TH1=0xfd;
  112.                 TL1=0xfd;
  113.                 SCON=0x50;
  114.                 PCON=0x00;
  115.                 TR1=1;                                          //启动T1
  116.                 while(1)
  117.                         {
  118.                         while(RI==0);                  //若TI为0,未接收到数据
  119.                         RI=0;                                  //接收到数据,把RI清零
  120.                         temp=SBUF;                           //读取数据存入temp中
  121.                          i=temp;
  122.                          if(i<=9)
  123.                 {
  124.                          shuchu0 = num[0];
  125.                          shuchu2 = num[i];
  126.                 }
  127.                 else
  128.                 {
  129.                         i=i-10;
  130.                         shuchu0 = num[1];
  131.                         shuchu2 = num[i];

  132.                 }         
  133.                         }
  134.                 }               
  135. }  
复制代码


回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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