From 61e60f5b322186ebacab03f8d9d93016819e90ff Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Sun, 20 Feb 2022 12:16:19 -0500 Subject: [PATCH] Minor documentation tweaks --- adafruit_adxl34x.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/adafruit_adxl34x.py b/adafruit_adxl34x.py index d094914..8d7993e 100755 --- a/adafruit_adxl34x.py +++ b/adafruit_adxl34x.py @@ -87,7 +87,8 @@ class DataRate: # pylint: disable=too-few-public-methods """An enum-like class representing the possible data rates. - Possible values are + + Possible values are: - ``DataRate.RATE_3200_HZ`` - ``DataRate.RATE_1600_HZ`` @@ -129,7 +130,7 @@ class DataRate: # pylint: disable=too-few-public-methods class Range: # pylint: disable=too-few-public-methods """An enum-like class representing the possible measurement ranges in +/- G. - Possible values are + Possible values are: - ``Range.RANGE_16_G`` - ``Range.RANGE_8_G`` @@ -148,7 +149,7 @@ class ADXL345: """Driver for the ADXL345 3 axis accelerometer :param ~busio.I2C i2c: The I2C bus the ADXL345 is connected to. - :param address: The I2C device address for the sensor. Default is :const:`0x53`. + :param int address: The I2C device address for the sensor. Default is :const:`0x53`. **Quickstart: Importing and using the device**