Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Python bindings for Raspberry Pi HX711 C++ Library

License

NotificationsYou must be signed in to change notification settings

endail/hx711-rpi-py

Repository files navigation

Upload to PyPIDownloads

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

Sample Output

hx711.gif

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.

Examples

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

Alternative Syntax (w/outwith)

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.Units can be viewedhere.

Time-Based Sampling

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)))

Options

.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)

Install

  1. Installlibhx711

  2. pip3 install --upgrade hx711-rpi-py

Calibrate

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.

Documentation

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

Topics

Resources

License

Stars

Watchers

Forks

Languages


[8]ページ先頭

©2009-2025 Movatter.jp