No description
Find a file
2020-07-08 16:49:04 -04:00
.github/workflows build.yml: add black formatting check 2020-04-07 15:59:35 -05:00
docs Ran black, updated to pylint 2.x 2020-03-09 17:36:20 -04:00
examples Ran black, updated to pylint 2.x 2020-03-09 17:36:20 -04:00
.gitignore Switched from Travis to GitHub Actions 2019-12-23 14:32:51 -05:00
.pylintrc Ran black, updated to pylint 2.x 2020-03-09 17:36:20 -04:00
.readthedocs.yml init! 2019-03-25 17:13:25 -04:00
adafruit_dymoscale.py Ran black, updated to pylint 2.x 2020-03-09 17:36:20 -04:00
CODE_OF_CONDUCT.md update code of coduct: discord moderation contact section 2020-03-15 18:28:25 -05:00
LICENSE init! 2019-03-25 17:13:25 -04:00
README.rst Fixed discord invite link 2020-07-08 16:49:04 -04:00
requirements.txt init! 2019-03-25 17:13:25 -04:00
setup.py Ran black, updated to pylint 2.x 2020-03-09 17:36:20 -04:00

Introduction
============

.. image:: https://readthedocs.org/projects/adafruit-circuitpython-dymoscale/badge/?version=latest
    :target: https://circuitpython.readthedocs.io/projects/dymoscale/en/latest/
    :alt: Documentation Status

.. image:: https://img.shields.io/discord/327254708534116352.svg
    :target: https://adafru.it/discord
    :alt: Discord

.. image:: https://github.com/adafruit/Adafruit_CircuitPython_DymoScale/workflows/Build%20CI/badge.svg
    :target: https://github.com/adafruit/Adafruit_CircuitPython_DymoScale/actions/
    :alt: Build Status

CircuitPython interface for `DYMO <http://www.dymo.com/en-US>`_ postage scales.

NOTE: This library will not work on embedded linux, only on microcontrollers.

Dependencies
=============
This driver depends on:

* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_

Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://github.com/adafruit/Adafruit_CircuitPython_Bundle>`_.

Installing from PyPI
--------------------
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
PyPI <https://pypi.org/project/adafruit-circuitpython-dymoscale/>`_. To install for current user:

.. code-block:: shell

    pip3 install adafruit-circuitpython-dymoscale

To install system-wide (this may be required in some cases):

.. code-block:: shell

    sudo pip3 install adafruit-circuitpython-dymoscale

To install in a virtual environment in your current project:

.. code-block:: shell

    mkdir project-name && cd project-name
    python3 -m venv .env
    source .env/bin/activate
    pip3 install adafruit-circuitpython-dymoscale

Usage Example
=============

Initialize the scale by passing it a data pin and a pin to toggle the units button:

.. code-block:: python

    # initialize the dymo scale
    units_pin = digitalio.DigitalInOut(board.D3)
    units_pin.switch_to_output()
    dymo = adafruit_dymoscale.DYMOScale(board.D4, units_pin)

Get the item's weight from the scale:

.. code-block:: python

    reading = dymo.weight
    print(reading.weight)

Get the item's units from the scale:

.. code-block:: python

    print(reading.units)

To toggle between units (simulate a button press):

.. code-block:: python

    dymo.toggle_unit_button(switch_unit=True)

To toggle the unit button, but preserve the unit displayed:

.. code-block:: python

    dymo.toggle_unit_button()


Contributing
============

Contributions are welcome! Please read our `Code of Conduct
<https://github.com/adafruit/Adafruit_CircuitPython_DymoScale/blob/master/CODE_OF_CONDUCT.md>`_
before contributing to help this project stay welcoming.

Documentation
=============

For information on building library documentation, please check out `this guide <https://learn.adafruit.com/creating-and-sharing-a-circuitpython-library/sharing-our-docs-on-readthedocs#sphinx-5-1>`_.