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.1.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.1-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_bno08x-1.3.1.tar.gz
Algorithm Hash digest
SHA256 9691c1157c037bd5b05d9d208ec93a2207394bafcf231fb84ed4d6097ef50f0d
MD5 505014f530853f0d593e971f65eca5a4
BLAKE2b-256 65285d72d0b594cdac32421517ff26edf9861accd88c19feb1dbad12984a2feb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_bno08x-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5757d87ae2be0c1ad29e9386c350b7cae5ccf63bcf7d656ba1b69d47af31a913
MD5 58fd97b08fd81200d3964906ce96d35a
BLAKE2b-256 05a4431101392dd64d4a6d39c73c069e75ada3a593f2b5f1389122e445126f03

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