HX711.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. #include "HX711.h"
  2. #include "delay.h"
  3. u32 HX711_Buffer;
  4. u32 Weight_Maopi;
  5. s32 Weight_Shiwu;
  6. u8 Flag_Error = 0;
  7. //校准参数
  8. //因为不同的传感器特性曲线不是很一致,因此,每一个传感器需要矫正这里这个参数才能使测量值很准确。
  9. //当发现测试出来的重量偏大时,增加该数值。
  10. //如果测试出来的重量偏小时,减小改数值。
  11. //该值可以为小数
  12. #define GapValue 490
  13. void Init_HX711pin(void)
  14. {
  15. GPIO_InitTypeDef GPIO_InitStructure;
  16. RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能PF端口时钟
  17. //HX711_SCK
  18. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12; // 端口配置
  19. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
  20. GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //IO口速度为50MHz
  21. GPIO_Init(GPIOB, &GPIO_InitStructure); //根据设定参数初始化GPIOB
  22. //HX711_DOUT
  23. GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
  24. GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;//输入上拉
  25. GPIO_Init(GPIOB, &GPIO_InitStructure);
  26. GPIO_SetBits(GPIOB,GPIO_Pin_12); //初始化设置为0
  27. }
  28. //****************************************************
  29. //读取HX711
  30. //****************************************************
  31. u32 HX711_Read(void) //增益128
  32. {
  33. unsigned long count;
  34. unsigned char i;
  35. HX711_DOUT=1;
  36. delay_us(1);
  37. HX711_SCK=0;
  38. count=0;
  39. while(HX711_DOUT);
  40. for(i=0;i<24;i++)
  41. {
  42. HX711_SCK=1;
  43. count=count<<1;
  44. delay_us(1);
  45. HX711_SCK=0;
  46. if(HX711_DOUT)
  47. count++;
  48. delay_us(1);
  49. }
  50. HX711_SCK=1;
  51. count=count^0x800000;//第25个脉冲下降沿来时,转换数据
  52. delay_us(1);
  53. HX711_SCK=0;
  54. return(count);
  55. }
  56. //****************************************************
  57. //获取毛皮重量
  58. //****************************************************
  59. void Get_Maopi(void)
  60. {
  61. Weight_Maopi = HX711_Read();
  62. }
  63. //****************************************************
  64. //称重
  65. //****************************************************
  66. void Get_Weight(void)
  67. {
  68. HX711_Buffer = HX711_Read();
  69. if(HX711_Buffer > Weight_Maopi)
  70. {
  71. Weight_Shiwu = HX711_Buffer;
  72. Weight_Shiwu = Weight_Shiwu - Weight_Maopi; //获取实物的AD采样数值。
  73. Weight_Shiwu = (s32)((float)Weight_Shiwu/GapValue); //计算实物的实际重量
  74. //因为不同的传感器特性曲线不一样,因此,每一个传感器需要矫正这里的GapValue这个除数。
  75. //当发现测试出来的重量偏大时,增加该数值。
  76. //如果测试出来的重量偏小时,减小改数值。
  77. }
  78. }