From db3c1fa75aca8272df23137af49b0623c3b74d0c Mon Sep 17 00:00:00 2001 From: Markus Kasten Date: Thu, 8 Oct 2020 11:19:08 +0200 Subject: [PATCH] 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. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 09253aa..a1dc9e1 100644 --- a/README.rst +++ b/README.rst @@ -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: