File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 87
87
88
88
class DataRate : # pylint: disable=too-few-public-methods
89
89
"""An enum-like class representing the possible data rates.
90
- Possible values are
90
+
91
+ Possible values are:
91
92
92
93
- ``DataRate.RATE_3200_HZ``
93
94
- ``DataRate.RATE_1600_HZ``
@@ -129,7 +130,7 @@ class DataRate: # pylint: disable=too-few-public-methods
129
130
class Range : # pylint: disable=too-few-public-methods
130
131
"""An enum-like class representing the possible measurement ranges in +/- G.
131
132
132
- Possible values are
133
+ Possible values are:
133
134
134
135
- ``Range.RANGE_16_G``
135
136
- ``Range.RANGE_8_G``
@@ -148,7 +149,7 @@ class ADXL345:
148
149
"""Driver for the ADXL345 3 axis accelerometer
149
150
150
151
:param ~busio.I2C i2c: The I2C bus the ADXL345 is connected to.
151
- :param address: The I2C device address for the sensor. Default is :const:`0x53`.
152
+ :param int address: The I2C device address for the sensor. Default is :const:`0x53`.
152
153
153
154
**Quickstart: Importing and using the device**
154
155
You can’t perform that action at this time.
0 commit comments