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 22
22
23
23
24
24
"""
25
- ``adafruit_bno055``
26
- ===================
25
+ ``adafruit_bno055`` - Adafruit 9-DOF Absolute Orientation IMU Fusion Breakout - BNO055
26
+ =======================================================================================
27
27
28
28
This is a CircuitPython driver for the Bosch BNO055 nine degree of freedom
29
29
inertial measurement unit module with sensor fusion.
@@ -95,14 +95,14 @@ class BNO055:
95
95
accelerometer = _ScaledReadOnlyStruct (0x08 , '<hhh' , 1 / 100 )
96
96
"""Gives the raw accelerometer readings, in m/s.
97
97
98
- .. warning:: This is deprecated. Use `acceleration` instead. It'll work
98
+ .. warning:: This is deprecated. Use `` acceleration` ` instead. It'll work
99
99
with other drivers too."""
100
100
acceleration = _ScaledReadOnlyStruct (0x08 , '<hhh' , 1 / 100 )
101
101
"""Gives the raw accelerometer readings, in m/s."""
102
102
magnetometer = _ScaledReadOnlyStruct (0x0e , '<hhh' , 1 / 16 )
103
103
"""Gives the raw magnetometer readings in microteslas.
104
104
105
- .. warning:: This is deprecated. Use `magnetic` instead. It'll work with
105
+ .. warning:: This is deprecated. Use `` magnetic` ` instead. It'll work with
106
106
other drivers too."""
107
107
magnetic = _ScaledReadOnlyStruct (0x0e , '<hhh' , 1 / 16 )
108
108
"""Gives the raw magnetometer readings in microteslas."""
You can’t perform that action at this time.
0 commit comments