C++ API for HX711.
More...
The HX711 is a precision 24-bit analog-to-digital converter (ADC) designed for weigh scales and industrial control applications to interface directly with a bridge sensor. This module was tested on the Intel Galileo Gen2.
#include "hx711.h"
int
main(int argc, char **argv)
{
std::cout << scale->
getUnits() << std::endl;
return 0;
}
HX711 |
( |
uint8_t |
data, |
|
|
uint8_t |
sck, |
|
|
uint8_t |
gain = 128 |
|
) |
| |
HX711 module constructor
- Parameters
-
data | define the data pin |
sck | define the clock pin |
gain | define the gain factor Valid values are 128 or 64 for channel A; channel B works with 32 gain factor only |
Waits for the chip to be ready and returns a reading
- Returns
- raw adc read
void setGain |
( |
uint8_t |
gain = 128 | ) |
|
Set the gain factor; takes effect only after a call to read() channel A can be set for a 128 or 64 gain; channel B has a fixed 32 gain depending on the parameter, the channel is also set to either A or B
- Parameters
-
gain | define the gain factor |
unsigned long readAverage |
( |
uint8_t |
times = 10 | ) |
|
Returns an average reading
- Parameters
-
times | define how many times to read |
- Returns
- the avarage reading
double getValue |
( |
uint8_t |
times = 10 | ) |
|
Returns (readAverage() - OFFSET)
- Parameters
-
times | define how many readings to do |
- Returns
- the current value without the tare weight
float getUnits |
( |
uint8_t |
times = 1 | ) |
|
Returns getValue() divided by SCALE
- Parameters
-
times | define how many readings to do |
- Returns
- the raw value divided by a value obtained via calibration
void tare |
( |
uint8_t |
times = 10 | ) |
|
Set the OFFSET value for tare weight
- Parameters
-
times | define how many times to read the tare value |
void setScale |
( |
float |
scale = 1.f | ) |
|
Set the SCALE value This value is used to convert the raw data to "human readable" data (measure units)
- Parameters
-
scale | value obtained via calibration |
The documentation for this class was generated from the following files:
- /var/lib/jenkins/workspace/upm-doc-stable/src/hx711/hx711.h
- /var/lib/jenkins/workspace/upm-doc-stable/src/hx711/hx711.cxx