File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2222
2323
2424"""
25- ``adafruit_bno055``
26- ===================
25+ ``adafruit_bno055`` - Adafruit 9-DOF Absolute Orientation IMU Fusion Breakout - BNO055
26+ =======================================================================================
2727
2828This is a CircuitPython driver for the Bosch BNO055 nine degree of freedom
2929inertial measurement unit module with sensor fusion.
@@ -95,14 +95,14 @@ class BNO055:
9595 accelerometer = _ScaledReadOnlyStruct (0x08 , '<hhh' , 1 / 100 )
9696 """Gives the raw accelerometer readings, in m/s.
9797
98- .. warning:: This is deprecated. Use `acceleration` instead. It'll work
98+ .. warning:: This is deprecated. Use `` acceleration` ` instead. It'll work
9999 with other drivers too."""
100100 acceleration = _ScaledReadOnlyStruct (0x08 , '<hhh' , 1 / 100 )
101101 """Gives the raw accelerometer readings, in m/s."""
102102 magnetometer = _ScaledReadOnlyStruct (0x0e , '<hhh' , 1 / 16 )
103103 """Gives the raw magnetometer readings in microteslas.
104104
105- .. warning:: This is deprecated. Use `magnetic` instead. It'll work with
105+ .. warning:: This is deprecated. Use `` magnetic` ` instead. It'll work with
106106 other drivers too."""
107107 magnetic = _ScaledReadOnlyStruct (0x0e , '<hhh' , 1 / 16 )
108108 """Gives the raw magnetometer readings in microteslas."""
You can’t perform that action at this time.
0 commit comments