Skip to main content

Helper library for the Hillcrest Laboratories BNO08x IMUs

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

Helper library for the Hillcrest Laboratories BNO08x IMUs

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

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:

pip3 install adafruit-circuitpython-bno08x

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

sudo pip3 install adafruit-circuitpython-bno08x

To install in a virtual environment in your current project:

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

Usage Example

import board
import busio
from adafruit_bno08x.i2c import BNO08X_I2C
from adafruit_bno08x import BNO_REPORT_ACCELEROMETER

REPORT_INTERVAL = const(100000) # 100 Hz
i2c = busio.I2C(board.SCL, board.SDA)
bno = BNO08X_I2C(i2c)
bno.enable_feature(BNO_REPORT_ACCELEROMETER, REPORT_INTERVAL)

while True:
    accel_x, accel_y, accel_z = bno.acceleration
    print("X: %0.6f  Y: %0.6f Z: %0.6f  m/s^2" % (accel_x, accel_y, accel_z))

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit_circuitpython_bno08x-1.3.3.tar.gz (39.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adafruit_circuitpython_bno08x-1.3.3-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

Details for the file adafruit_circuitpython_bno08x-1.3.3.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_bno08x-1.3.3.tar.gz
Algorithm Hash digest
SHA256 94ccdb79c0f2459735e41b6742fad157fa04a4681bd07c0b6192675eede262f9
MD5 accc46c7456fb48d3695b65a90767af8
BLAKE2b-256 4c2871d2625541ec4bee1cbe987244e95a280bca1f837016488ebaadf9995b15

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_bno08x-1.3.3-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_bno08x-1.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 30a9fce5cbf140a1fccb69722f142d753f4c4d72a29f1590884b5d8ffd7d4adc
MD5 bb35f7c7cb96dca4cf8eccb1f9c62676
BLAKE2b-256 7efc281a1f6c47ce47eb07739ee6472befcad284e12c2b09131062b24328b49b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page