upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for HX711. More...

Detailed Description

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.

hx711.jpeg
#include "hx711.h"
int
main(int argc, char **argv)
{
upm::HX711 *scale = new upm::HX711(3, 2);
// 2837: value obtained via calibration
scale->setScale(2837);
scale->tare();
std::cout << scale->getUnits() << std::endl;
return 0;
}

Public Member Functions

 HX711 (uint8_t data, uint8_t sck, uint8_t gain=128)
 
 ~HX711 ()
 
unsigned long read ()
 
void setGain (uint8_t gain=128)
 
unsigned long readAverage (uint8_t times=10)
 
double getValue (uint8_t times=10)
 
float getUnits (uint8_t times=1)
 
void tare (uint8_t times=10)
 
void setScale (float scale=1.f)
 

Constructor & Destructor Documentation

HX711 ( uint8_t  data,
uint8_t  sck,
uint8_t  gain = 128 
)

HX711 module constructor

Parameters
datadefine the data pin
sckdefine the clock pin
gaindefine the gain factor Valid values are 128 or 64 for channel A; channel B works with 32 gain factor only
~HX711 ( )

HX711 module Destructor

Member Function Documentation

unsigned long read ( )

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
gaindefine the gain factor
unsigned long readAverage ( uint8_t  times = 10)

Returns an average reading

Parameters
timesdefine how many times to read
Returns
the avarage reading
double getValue ( uint8_t  times = 10)

Returns (readAverage() - OFFSET)

Parameters
timesdefine 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
timesdefine 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
timesdefine 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
scalevalue obtained via calibration

The documentation for this class was generated from the following files: