- Notifications
You must be signed in to change notification settings - Fork5
Python bindings for Raspberry Pi HX711 C++ Library
License
endail/hx711-rpi-py
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Python bindings forRaspberry Pi HX711 C++ Library
- Use with Raspberry Pi
- Read from a HX711 using Python
- Code tested insidevirtual Raspberry Pi Zero/3/4 environments on GitHub and builds automatically uploaded to PyPI
- This repo automatically rebuilds when the C++ library is updated
The .gif above illustrates the output of asimple Python script on a Raspberry Pi Zero W where the HX711 chip was operating at 80Hz. In this example, each time the.weight
function is called the median of three samples was used to calculate the weight in grams.
fromHX711import*# create a SimpleHX711 object using GPIO pin 2 as the data pin,# GPIO pin 3 as the clock pin, -370 as the reference unit, and# -367471 as the offsetwithSimpleHX711(2,3,-370,-367471)ashx:# set the scale to output weights in ounceshx.setUnit(Mass.Unit.OZ)# zero the scalehx.zero()# constantly output weights using the median of 35 sampleswhileTrue:print(hx.weight(35))#eg. 1.08 oz
fromHX711import*hx=SimpleHX711(2,3,-370,-367471)hx.setUnit(Mass.Unit.OZ)hx.zero()whileTrue:print(hx.weight(35))
Keep in mind that calling.weight()
will return aMass
object, but you can do the following:
# set the scale to output weights in ounceshx.setUnit(Mass.Unit.OZ)# obtain a median reading from 35 samples as a Mass object in ouncesm=hx.weight(35)# number in ouncesnum=float(m)# eg. 1.08# string representation of the Masss=str(m)# eg. 1.08 oz# print the Mass objectprint(m)# eg. 1.08 oz# change the unit to gramsm.setUnit(Mass.Unit.G)grams_as_str=str(m)# eg. 30.62 g# or obtain a new Mass objectm2=m.convertTo(Mass.Unit.KG)kgs_as_str=str(m2)# eg. 0.031 kg
The list of differentMass.Unit
s can be viewedhere.
You can usedatetime.timedelta
to obtain as many samples as possible within the time period.
fromHX711import*fromdatetimeimporttimedeltawithSimpleHX711(2,3,-370,-367471)ashx:whileTrue:# eg. obtain as many samples as possible within 1 secondprint(hx.weight(timedelta(seconds=1)))
.weight()
,.zero()
, and.read()
can all take anOptions
parameter. You can use this to fine tune how you want the scale to behave.
# zero the scale by using the average value of all samples obtained within 1 secondhx.zero(Options(timedelta(seconds=1),ReadType.Average))# obtain a raw value from the scale using the median of 100 samplesnum=hx.read(Options(100,ReadType.Median))# obtain a Mass object using the median of three samples# all four statements below are equivalentm=hx.weight()m=hx.weight(3)m=hx.weight(Options())m=hx.weight(Options(3,ReadType.Median))# Options can also be created separatelyopts=Options()opts.timeout=timedelta(seconds=5)opts.stratType=StrategyType.Timem=hx.weight(opts)
Installlibhx711
pip3 install --upgrade hx711-rpi-py
There is a Python script in thesrc
directory you can use to calibrate your load cell and obtain the reference unit and offset values referred to above. The simplest way to use it after installinghx711-rpi-py
is as follows:
pi@raspberrypi:~ $wget https://raw.githubusercontent.com/endail/hx711-rpi-py/master/src/calibrate.pypi@raspberrypi:~ $python3 calibrate.py [data pin] [clock pin]
Substitute[data pin]
and[clock pin]
with theGPIO pin numbers which are connected to the HX711's data pin and clock pin, respectively.
As the Python code relies upon theunderlying C++ library, the documentation is identical. However, not all of the code is exposed to Python. You can check precisely which functionality is accessible through Python in thebindings.cpp file.
About
Python bindings for Raspberry Pi HX711 C++ Library