Skip to content

Commit

Permalink
Update README to use correct BNO055 class for I2C
Browse files Browse the repository at this point in the history
Using the BNO055 class results in a NotImplementedError. For the I2C example, the class BNO055_I2C needs to be used.
  • Loading branch information
markus-k authored Oct 8, 2020
1 parent 7f6d9fc commit db3c1fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Once you have the I2C object, you can create the sensor object:

.. code:: python
sensor = adafruit_bno055.BNO055(i2c)
sensor = adafruit_bno055.BNO055_I2C(i2c)
And then you can start reading the measurements:
Expand Down

0 comments on commit db3c1fa

Please sign in to comment.