We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a705ed3 commit 0494e05Copy full SHA for 0494e05
README.rst
@@ -30,15 +30,14 @@ Of course, you must import the library to use it:
30
import adafruit_bno055
31
32
33
-This driver takes an instantiated and active I2C object (from the `nativeio` or
+This driver takes an instantiated and active I2C object (from the `busio` or
34
the `bitbangio` library) as an argument to its constructor. The way to create
35
an I2C object depends on the board you are using. For boards with labeled SCL
36
and SDA pins, you can:
37
38
.. code:: python
39
40
- from nativeio import I2C
41
- #from bitbangio import I2C
+ from busio import I2C
42
from board import SDA, SCL
43
44
i2c = I2C(SCL, SDA)
0 commit comments