File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 60
60
__version__ = "0.0.0-auto.0"
61
61
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LSM303_Accel.git"
62
62
63
- # pylint: disable=bad-whitespace
64
63
_ADDRESS_ACCEL = const (0x19 ) # (0x32 >> 1) // 0011001x
65
64
_ADDRESS_MAG = const (0x1E ) # (0x3C >> 1) // 0011110x
66
65
_ID = const (0xD4 ) # (0b11010100)
105
104
_LSM303ACCEL_MG_LSB = 16704.0 # magic!
106
105
_GRAVITY_STANDARD = 9.80665 # Earth's gravity in m/s^2
107
106
_SMOLLER_GRAVITY = 0.00980665
108
- # pylint:disable=too-few-public-methods
107
+ # pylint: disable=too-few-public-methods
109
108
class Rate :
110
109
"""Options for `data_rate`"""
111
110
@@ -138,7 +137,7 @@ class Range:
138
137
RANGE_16G = const (3 )
139
138
140
139
141
- # pylint: enable=bad-whitespace, too-few-public-methods
140
+ # pylint: enable=too-few-public-methods
142
141
143
142
144
143
class LSM303_Accel : # pylint:disable=too-many-instance-attributes
You can’t perform that action at this time.
0 commit comments