Skip to content

Commit bfac704

Browse files
committed
updated docstrings: title & added some doubleticks
1 parent 7026dc7 commit bfac704

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_bno055.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323

2424
"""
25-
``adafruit_bno055``
26-
===================
25+
``adafruit_bno055`` - Adafruit 9-DOF Absolute Orientation IMU Fusion Breakout - BNO055
26+
=======================================================================================
2727
2828
This is a CircuitPython driver for the Bosch BNO055 nine degree of freedom
2929
inertial 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."""

0 commit comments

Comments
 (0)