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.2.tar.gz (39.3 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.2-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_bno08x-1.3.2.tar.gz
Algorithm Hash digest
SHA256 3a85b25953fc0da044893970b221d2039b6e1c2c8566d400b027d62e17f5a8ed
MD5 2eea5646c542f4676225099f90ffb15f
BLAKE2b-256 1b1db35d137fb6f0fd57b4352b04ff299e44fbdef6c35c1c265f628328da6bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_bno08x-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4b3d0cee92b2faaaa31ccdf982f95e85a7b15b30f2ee196c03ff029f08af33ec
MD5 1eeb64c70a7cfc3b26cdac873e3eda57
BLAKE2b-256 2d961c4900d2a8cf7140d1edc50d0a9b7db54de8fa1e7d7ad52d1880156cbc82

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