https://github.com/jposada202020/micropython_bmi160
⛔️ DEPRECATED MicroPython Driver for the Bosch BMI160 Acc/Gyro Sensor
https://github.com/jposada202020/micropython_bmi160
acceleration accelerometer archived bmi160 bosch deprecated driver gyro gyroscope micropython obsolete sensor
Last synced: about 1 year ago
JSON representation
⛔️ DEPRECATED MicroPython Driver for the Bosch BMI160 Acc/Gyro Sensor
- Host: GitHub
- URL: https://github.com/jposada202020/micropython_bmi160
- Owner: jposada202020
- License: mit
- Archived: true
- Created: 2023-06-10T21:01:38.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-20T03:35:48.000Z (over 1 year ago)
- Last Synced: 2025-04-01T22:44:32.978Z (about 1 year ago)
- Topics: acceleration, accelerometer, archived, bmi160, bosch, deprecated, driver, gyro, gyroscope, micropython, obsolete, sensor
- Language: Python
- Homepage:
- Size: 66.4 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
⛔️ DEPRECATED
===============
This repository is no longer supported, please consider using alternatives.
.. image:: http://unmaintained.tech/badge.svg
:target: http://unmaintained.tech
:alt: No Maintenance Intended
MicroPython Driver for the Bosch BMI160 Acc/Gyro Sensor
Installing with mip
====================
To install using mpremote
.. code-block:: shell
mpremote mip install github:jposada202020/MicroPython_BMI160
To install directly using a WIFI capable board
.. code-block:: shell
mip.install("github:jposada202020/MicroPython_BMI160")
Installing Library Examples
============================
If you want to install library examples:
.. code-block:: shell
mpremote mip install github:jposada202020/MicroPython_BMI160/examples.json
To install directly using a WIFI capable board
.. code-block:: shell
mip.install("github:jposada202020/MicroPython_BMI160/examples.json")
Installing from PyPI
=====================
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
PyPI `_.
To install for current user:
.. code-block:: shell
pip3 install micropython-bmi160
To install system-wide (this may be required in some cases):
.. code-block:: shell
sudo pip3 install micropython-bmi160
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-bmi160
Usage Example
=============
Take a look at the examples directory
Documentation
=============
API documentation for this library can be found on `Read the Docs `_.