Skip to content

Commit db3c1fa

Browse files
authored
Update README to use correct BNO055 class for I2C
Using the BNO055 class results in a NotImplementedError. For the I2C example, the class BNO055_I2C needs to be used.
1 parent 7f6d9fc commit db3c1fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Once you have the I2C object, you can create the sensor object:
7575

7676
.. code:: python
7777
78-
sensor = adafruit_bno055.BNO055(i2c)
78+
sensor = adafruit_bno055.BNO055_I2C(i2c)
7979
8080
8181
And then you can start reading the measurements:

0 commit comments

Comments
 (0)