We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 36d68e3 + 6f23d4b commit 4b49fd4Copy full SHA for 4b49fd4
adafruit_lsm9ds1.py
@@ -61,7 +61,6 @@
61
from micropython import const
62
63
# Internal constants and register values:
64
-# pylint: disable=bad-whitespace
65
_LSM9DS1_ADDRESS_ACCELGYRO = const(0x6B)
66
_LSM9DS1_ADDRESS_MAG = const(0x1E)
67
_LSM9DS1_XG_ID = const(0b01101000)
@@ -135,7 +134,6 @@
135
134
GYROSCALE_245DPS = 0b00 << 3 # +/- 245 degrees/s rotation
136
GYROSCALE_500DPS = 0b01 << 3 # +/- 500 degrees/s rotation
137
GYROSCALE_2000DPS = 0b11 << 3 # +/- 2000 degrees/s rotation
138
-# pylint: enable=bad-whitespace
139
140
141
def _twos_comp(val, bits):
0 commit comments