标题:
Arduino HX711模块库文件下载
[打印本页]
作者:
sh782945358
时间:
2019-6-10 00:05
标题:
Arduino HX711模块库文件下载
有些乱,不过能看
0.png
(6.02 KB, 下载次数: 104)
下载附件
2019-6-10 04:32 上传
Arduino源程序如下:
#include "hx711.h"
long HX711_Buffer = 0;
long Weight_Maopi = 0,Weight_Shiwu = 0;
#define GapValue 430
//****************************************************
//初始化HX711
//****************************************************
void Init_Hx711()
{
pinMode(HX711_SCK, OUTPUT);
pinMode(HX711_DT, INPUT);
}
//****************************************************
//获取毛皮重量
//****************************************************
void Get_Maopi()
{
Weight_Maopi = HX711_Read();
}
//****************************************************
//称重
//****************************************************
long Get_Weight()
{
HX711_Buffer = HX711_Read();
Weight_Shiwu = HX711_Buffer;
Weight_Shiwu = Weight_Shiwu - Weight_Maopi; //获取实物的AD采样数值。
Weight_Shiwu = (long)((float)Weight_Shiwu/GapValue);
return Weight_Shiwu;
}
//****************************************************
//读取HX711
//****************************************************
unsigned long HX711_Read(void) //增益128
{
unsigned long count;
unsigned char i;
bool Flag = 0;
digitalWrite(HX711_DT, HIGH);
delayMicroseconds(1);
digitalWrite(HX711_SCK, LOW);
delayMicroseconds(1);
count=0;
while(digitalRead(HX711_DT));
for(i=0;i<24;i++)
{
digitalWrite(HX711_SCK, HIGH);
delayMicroseconds(1);
count=count<<1;
digitalWrite(HX711_SCK, LOW);
delayMicroseconds(1);
if(digitalRead(HX711_DT))
count++;
}
digitalWrite(HX711_SCK, HIGH);
count ^= 0x800000;
delayMicroseconds(1);
digitalWrite(HX711_SCK, LOW);
delayMicroseconds(1);
return(count);
}
复制代码
所有资料51hei提供下载:
HX711_AD.zip
(1.59 KB, 下载次数: 103)
2019-6-10 00:05 上传
点击文件名下载附件
下载积分: 黑币 -5
作者:
大猫8888
时间:
2019-6-28 11:34
感谢
作者:
jt110112119
时间:
2021-3-20 11:00
thanks all
作者:
at58999
时间:
2022-3-21 22:11
大猫8888 发表于 2019-6-28 11:34
感谢
这个能用吗
欢迎光临 (http://www.51hei.com/bbs/)
Powered by Discuz! X3.1