Metadata-Version: 1.1
Name: hx711
Version: 1.0.1
Summary: library to drive a HX711 o a Raspberry Pi
Home-page: https://github.com/mpibpc-mroose/hx711
Author: Marco Roose
Author-email: marco.roose@gmx.de
License: MIT license
Description: =====
        HX711
        =====
        
        
        .. image:: https://img.shields.io/pypi/v/hx711.svg
                :target: https://pypi.python.org/pypi/hx711
        
        .. image:: https://img.shields.io/travis/mpibpc_mroose/hx711.svg
                :target: https://travis-ci.org/mpibpc_mroose/hx711
        
        .. image:: https://readthedocs.org/projects/hx711/badge/?version=latest
                :target: https://hx711.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        .. image:: https://pyup.io/repos/github/mpibpc_mroose/hx711/shield.svg
             :target: https://pyup.io/repos/github/mpibpc_mroose/hx711/
             :alt: Updates
        
        
        This library allows to drive a HX711 on a Raspberry Pi. It just provides the capabilities:
        
        * to set channel an gain and
        * to read raw values
        
        **This package requires RPi.GPIO to be installed in Python 3.**
        
        Example implementation:
        ```
        #!/usr/bin/python3
        from hx711 import HX711
        
        try:
            hx711 = HX711(
                dout_pin=5,
                pd_sck_pin=6,
                channel='A',
                gain=64
            )
        
            hx711.reset()   # Before we start, reset the HX711 (not obligate)
            measures = hx711.get_raw_data(num_measures=3)
        finally:
            GPIO.cleanup()  # always do a GPIO cleanup in your scripts!
        
        print("\n".join(measures))
        ```
        
        
        * Free software: MIT license
        
        
        
        Credits
        ---------
        I used https://github.com/gandalf15/HX711/ as base.
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        
        =======
        History
        =======
        
        0.1.0 (2017-11-26)
        ------------------
        
        * First release on PyPI.
        
Keywords: hx711
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
