找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 3095|回复: 2
收起左侧

基于51单片机电子秤程序 原理图PCB文件

  [复制链接]
ID:383247 发表于 2022-2-13 12:03 | 显示全部楼层 |阅读模式
硬件电路图:
51hei截图20220213114421.png

Altium Designer画的PCB图如下:(51hei附件中可下载工程文件)
51hei.png

演示视频:
https://v.youku.com/v_show/id_XNTg0MTg3OTMwMA==.html

单片机源程序如下:
  1. #include <reg52.h>
  2. #include <intrins.h>
  3. #include <string.h>

  4. bit flag_key;
  5. #include "main.h"
  6. #include "LCD1602.h"
  7. #include "HX711.h"
  8. #include "keyboard.h"
  9. #include "eeprom52.h"

  10. #define uchar unsigned char
  11. #define uint  unsigned int

  12. unsigned long HX711_Buffer = 0;
  13. unsigned long Weight_Maopi = 0;
  14. unsigned long Weight_Maopi_0 = 0;
  15. unsigned int qupi=0;
  16. long Weight_Shiwu = 0;
  17. //键盘处理变量
  18. unsigned char keycode;
  19. unsigned char DotPos;                                   //小数点标志及位置

  20. uint GapValue,GapValue1;

  21. unsigned char idata price;     //单价,长整型值,单位为分   
  22. unsigned char idata money;     //总价,长整型值,单位为分
  23. //定义标识
  24. volatile bit FlagTest = 0;                //定时测试标志,每0.5秒置位,测完清0
  25. volatile bit FlagKeyPress = 0;  //有键按下标志,处理完毕清0
  26. //校准参数
  27. //因为不同的传感器特性曲线不是很一致,因此,每一个传感器需要矫正这里这个参数才能使测量值很准确。
  28. //当发现测试出来的重量偏大时,增加该数值。
  29. //如果测试出来的重量偏小时,减小改数值。
  30. //该值可以为小数
  31. //#define GapValue 349
  32. sbit LED=P1^1;

  33. volatile bit ClearWeighFlag = 0; //传感器调零标志位,清除0漂

  34. /******************把数据保存到单片机内部eeprom中******************/
  35. void write_eeprom()
  36. {
  37.         SectorErase(0x1000);
  38.         GapValue1=GapValue&0x00ff;
  39.         byte_write(0x2000, GapValue1);
  40.         GapValue1=(GapValue&0xff00)>>8;
  41.         byte_write(0x2001, GapValue1);
  42.         byte_write(0x2060, a_a);        
  43. }

  44. /******************把数据从单片机内部eeprom中读出来*****************/
  45. void read_eeprom()
  46. {
  47.         GapValue   = byte_read(0x2001);
  48.         GapValue   = (GapValue<<8)|byte_read(0x2000);
  49.         a_a      = byte_read(0x2060);
  50. }

  51. /**************开机自检eeprom初始化*****************/
  52. void init_eeprom()
  53. {
  54.         read_eeprom();                //先读
  55.         if(a_a != 1)                //新的单片机初始单片机内问eeprom
  56.         {
  57.                 GapValue  = 3500;
  58.                 a_a = 1;
  59.                 write_eeprom();           //保存数据
  60.         }        
  61. }
  62.                                                                                                                                        
  63. //显示单价,单位为元,四位整数,两位小数
  64. void Display_Price()
  65. {
  66.             LCD1602_write_com(0x8c);
  67.                         LCD1602_write_data(price/100 + 0x30);
  68.                         LCD1602_write_data(price%100/10 + 0x30);
  69.                         LCD1602_write_data('.');
  70.                         LCD1602_write_data(price%10 + 0x30);
  71. }

  72. //显示重量,单位kg,两位整数,三位小数
  73. void Display_Weight()
  74. {
  75.             LCD1602_write_com(0x83);
  76.                         LCD1602_write_data(Weight_Shiwu/1000 + 0x30);
  77.                         LCD1602_write_data('.');
  78.                         LCD1602_write_data(Weight_Shiwu%1000/100 + 0x30);
  79.                         LCD1602_write_data(Weight_Shiwu%100/10 + 0x30);
  80.                         LCD1602_write_data(Weight_Shiwu%10 + 0x30);
  81. }

  82. //显示总价,单位为元,四位整数,两位小数
  83. void Display_Money()
  84. {
  85.   // unsigned int i,j;

  86.    if (money>9999)         //超出显示量程
  87.    {
  88.      LCD1602_write_com(0x80+0x40+6);
  89.      LCD1602_write_word("---.-");
  90.       return;      
  91.    }
  92.    if (money>=1000)
  93.    {
  94.        LCD1602_write_com(0x80+0x40+6);
  95.            LCD1602_write_data(money/1000 + 0x30);
  96.            LCD1602_write_data(money%1000/100 + 0x30);
  97.            LCD1602_write_data(money%100/10 + 0x30);
  98.            LCD1602_write_data('.');
  99.            LCD1602_write_data(money%10 + 0x30);
  100.    }
  101.    else if (money>=100)
  102.    {
  103.        LCD1602_write_com(0x80+0x40+6);
  104.            LCD1602_write_data(0x20);
  105.            LCD1602_write_data(money%1000/100 + 0x30);
  106.            LCD1602_write_data(money%100/10 + 0x30);
  107.            LCD1602_write_data('.');
  108.            LCD1602_write_data(money%10 + 0x30);
  109.    }
  110.     else if(money>=10)
  111.    {
  112.        LCD1602_write_com(0x80+0x40+6);
  113.           LCD1602_write_data(0x20);
  114.             LCD1602_write_com(0x80+0x40+7);
  115.            LCD1602_write_data(0x20);
  116.            LCD1602_write_data(money%100/10 + 0x30);
  117.            LCD1602_write_data('.');
  118.            LCD1602_write_data(money%10+ 0x30);
  119.    }   
  120.    else
  121.      {
  122.        LCD1602_write_com(0x80+0x40+6);
  123.            LCD1602_write_data(0x20);
  124.            LCD1602_write_com(0x80+0x40+7);
  125.            LCD1602_write_data(0x20);
  126.            LCD1602_write_com(0x80+0x40+8);
  127.            LCD1602_write_data(0 + 0x30);
  128.            LCD1602_write_data('.');
  129.            LCD1602_write_data(money%10 + 0x30);
  130.    }         
  131. }

  132. //数据初始化
  133. void Data_Init()
  134. {
  135.    price = 0;
  136.    DotPos = 0;
  137. }
  138. //定时器0初始化
  139. void Timer0_Init()
  140. {
  141.         ET0 = 1;        //允许定时器0中断
  142.         TMOD = 1;       //定时器工作方式选择
  143.         TL0 = 0xb0;     
  144.         TH0 = 0x3c;     //定时器赋予初值
  145.         TR0 = 1;        //启动定时器
  146. }

  147. //定时器0中断
  148. void Timer0_ISR (void) interrupt 1 using 0
  149. {
  150.         uchar Counter;
  151.         TL0 = 0xb0;
  152.         TH0 = 0x3c;     //定时器赋予初值

  153.         //每0.5秒钟刷新重量
  154.     Counter++;
  155.     if (Counter >= 10)
  156.     {
  157.        FlagTest = 1;
  158.            Counter = 0;
  159.     }
  160. }


  161. //按键响应程序,参数是键值
  162. //返回键值:
  163. //         1    2    3    10           //10:清零重量,兼去皮功能        
  164. //         4    5    6    11           //11:清除单价
  165. //         7    8    9    12           //12:显示数值偏大调节按键  
  166. //         14   0    15   13           //14:无功能(用于扩展)15:小数点   13:显示数值偏小调节按键

  167. void KeyPress(uchar keycode)
  168. {
  169.         switch (keycode)
  170.         {
  171.                 case 0:
  172.                 case 1:
  173.                 case 2:
  174.                 case 3:
  175.                 case 4:
  176.                 case 5:
  177.                 case 6:
  178.                 case 7:
  179.                 case 8:
  180.                 case 9:        //目前在设置整数位,要注意price是整型,存储单位为分
  181.                         if (DotPos == 0)
  182.                         {                        //最多只能设置到千位
  183.                                 if (price<100)
  184.                                 {
  185.                                         price=price*10+keycode*10;
  186.                                 }
  187.                         }//目前在设置小数位
  188.                         else if (DotPos==1)  //小数点后第一位
  189.                         {
  190.                                 price=price+keycode;
  191.                                 DotPos=2;
  192.                         }
  193.                         Display_Price();
  194.                         break;
  195.                 case 10:   //去皮键
  196.                         if(qupi==0)
  197.                                 qupi=Weight_Shiwu;
  198.                         else
  199.                                 qupi=0;
  200.                         Display_Price();
  201.                         DotPos = 0;
  202.                         break;
  203.                 case 11:        //删除键
  204.                         price=0;
  205.                         DotPos=0;
  206.                         Display_Price();
  207.                         break;
  208.                 case 12:           //加
  209.                         if(GapValue<10000)
  210.                         GapValue--;        
  211.                         
  212.                         break;
  213.                 case 13:   //减
  214.                         if(GapValue>1)
  215.                         GapValue++;
  216.                         break;
  217.                 case 15:   //小数点按下
  218.                         DotPos = 1;      //小数点后第一位
  219.                         break;

  220.    }
  221. }
  222. //****************************************************
  223. //主函数
  224. //****************************************************
  225. void main()
  226. {
  227.         init_eeprom();  //开始初始化保存的数据
  228.         Init_LCD1602();                                
  229.         LCD1602_write_com(0x80);
  230.         LCD1602_write_word("               ");
  231.         LCD1602_write_com(0x80+0x40);
  232.         LCD1602_write_word("               ");
  233.         
  234.    EA = 0;
  235.    Data_Init();
  236.    Timer0_Init();
  237.         EA = 1;
  238.         //Get_Maopi();
  239.         LCD1602_write_com(0x80);                                                //指针设置
  240.    LCD1602_write_word(" Welcome To Use ");        //  
  241.    LCD1602_write_com(0x80+0x40);                                                //指针设置
  242.    LCD1602_write_word("Electronic Scale");
  243. //   Delay_ms(2000);
  244.    Get_Maopi();
  245.         
  246.    LCD1602_write_com(0x80);                                                //指针设置
  247.    LCD1602_write_word("WE:0.000 PR:00.0");
  248.    LCD1602_write_com(0x80+0x40);                                //指针设置
  249.    LCD1602_write_word("MONEY:  0.00    ");
  250.    Display_Price();
  251. //        Get_Maopi();                                //称毛皮重量
  252.         
  253.         GapValue=4500;
  254.         while(1)
  255.         {
  256.         //每0.5秒称重一次
  257.         if (FlagTest==1)
  258.         {
  259.                 Get_Weight();
  260.                 FlagTest = 0;
  261.         }                        
  262.                   
  263.           keycode = Getkeyboard();
  264.           //有效键值0-15
  265.           if (keycode<16)
  266.           {
  267.                  KeyPress(keycode);
  268.                  Buzzer=0;
  269.                  Delay_ms(100);
  270.                  Buzzer=1;
  271.                  while(keycode<16)
  272.                  {
  273.                         if(keycode==12||keycode==13)
  274.                         {
  275.                                 Buzzer=0;
  276.                                  Delay_ms(10);
  277.                                  Buzzer=1;
  278.                                  KeyPress(keycode);
  279.                                  Get_Weight();
  280.                                  flag_key=1;
  281.                         }
  282.                         keycode = Getkeyboard();
  283.                  }
  284.                  write_eeprom();                           //保存数据
  285.           }
  286.         }
  287. }
  288. //****************************************************
  289. //称重
  290. //****************************************************
  291. void Get_Weight()
  292. {
  293.         Weight_Shiwu = HX711_Read();
  294.         Weight_Shiwu = Weight_Shiwu - Weight_Maopi;                //获取净重
  295.         
  296.         Weight_Shiwu = (unsigned int)((float)Weight_Shiwu*10/GapValue)-qupi;         //计算实物的实际重量                                                                                                                                
  297.         if(Weight_Shiwu > 5000)                //超重报警
  298.         {
  299.                 Buzzer = !Buzzer;        
  300.                 LED=!LED;
  301.                 LCD1602_write_com(0x83);
  302.            LCD1602_write_word("-.---");
  303.         }
  304.         else
  305.         {
  306.                 if(Weight_Shiwu==0)
  307.                 LED=1;
  308.                 else if(Weight_Shiwu>0)
  309.                 LED=0;
  310. ……………………

  311. …………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码

源代码文件和硬件PCB:
基于51单片机电子秤.7z (7.52 MB, 下载次数: 114)

评分

参与人数 1黑币 +10 收起 理由
admin + 10 共享资料的黑币奖励!

查看全部评分

回复

使用道具 举报

ID:524173 发表于 2022-2-15 08:12 | 显示全部楼层
不错的,,这图纸够详细!
回复

使用道具 举报

ID:1009293 发表于 2022-3-9 19:00 | 显示全部楼层
这太清晰了吧
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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