Skip to content

Releases: adafruit/Adafruit_CircuitPython_BNO055

5.2.0 - Added ability to configure accelerometer, magnetometer, and gyroscope

07 Aug 13:20
7f6d9fc
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

5.1.0 - Added documentation for modes, added i2c-gpio example

16 Jul 17:46
2064bdb
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

5.0.2 - Significantly improved speed and reliability in UART mode

10 Jul 14:57
d8ad1e6
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

5.0.1 - Changed _gyro property from magnetic register to gyro address 0x14

14 May 16:10
3700bb5
Compare
Choose a tag to compare

Thanks @russmac

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

UART Support

24 Apr 22:46
ef2deb9
Compare
Choose a tag to compare

BREAKING CHANGE

  • Updated to add UART support
  • Classes were refactored - this will break older code
  • Example updated

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

4.2.1 - Added Black check, reran Black with Python 3 target, renamed folder in examples

10 Apr 18:22
5a5ec63
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

4.2.0 - Upgrade to latest Pylint, implement Black formatting

20 Mar 15:41
54d42f1
Compare
Choose a tag to compare

We have upgraded Pylint checks to use the latest version of Pylint and implemented usage of Black Python formatting. This does not change the functionality of the code - it is designed to bring it up to current standards and make it more readable.

  • Remove pinned Pylint version number from build.yml file
  • Synced .pylintrc file to match Adafruit standard
  • Ran upgraded Pylint and applied any changes or new disables necessary
  • Ran Black formatter and allowed application of changes across entire repo

For more information on using Pylint and Black on your code, check out this guide on working with Pylint and Black

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

Add calibration offsets and radii

27 Jan 22:14
2e9716c
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

4.0.1 - Changed CI from Travis to GitHub Actions

17 Jan 02:23
Compare
Choose a tag to compare

This release includes:

  • Migrating this repository from Travis to GitHub Actions. This has no effect on the behavior of the code itself.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.

[Breaking Changes] Removed deprecated properties, changed behavior of disabled properties

20 Oct 02:04
e43b1a2
Compare
Choose a tag to compare

NOTE: This release has breaking changes

Breaking changes:

  • accelerometer property has been removed, the equivalent non-deprecated property is acceleration.
  • magnetometer property has been removed, the equivalent non-deprecated property is magnetic.
  • gyroscope property has been removed, the equivalent non-deprecated property is gyro.

Non-breaking changes:

  • If a property is disabled by putting it in a mode that it is disabled in, it will now return a tuple filled with None instead of a tuple filled with zeroes

Old behavior:

>>> sensor.mode = bno055.ACCONLY_MODE #everything other than acceleration is disabled
>>> print(sensor.gyro)
(0, 0, 0)

New Behavior:

>>> sensor.mode = bno055.ACCONLY_MODE
>>> print(sensor.gyro)
(None, None, None)

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-bno055.

Read the docs for info on how to use it.