Metadata-Version: 2.1
Name: micropython-lis3dh
Version: 0.1.0
Summary: LIS3DH MicroPython Driver
Author-email: "Jose D. Montoya" <lis3dh@mailmeto.mozmail.com>
License: MIT
Project-URL: Homepage, https://github.com/jposada202020/LIS3DH
Keywords: micropython,lis3dh,sernsor,acceleration,tap,movement,sensor
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: Topic :: System :: Hardware
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/x-rst
License-File: LICENSE

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


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

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    :alt: Code Style: Black

LIS3DH MicroPython Driver

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

.. code-block:: shell

    pip3 install micropython-lis3dh

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

.. code-block:: shell

    sudo pip3 install micropython-lis3dh

To install in a virtual environment in your current project:

.. code-block:: shell

    mkdir project-name && cd project-name
    python3 -m venv .venv
    source .env/bin/activate
    pip3 install micropython-lis3dh
