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 f128d33 + 520e4f0 commit 33bb64cCopy full SHA for 33bb64c
adafruit_ads1x15/ads1x15.py
@@ -199,5 +199,5 @@ def _read_register(self, reg, fast=False):
199
if fast:
200
i2c.readinto(self.buf, end=2)
201
else:
202
- i2c.write_then_readinto(bytearray([reg]), self.buf, in_end=2, stop=False)
+ i2c.write_then_readinto(bytearray([reg]), self.buf, in_end=2)
203
return self.buf[0] << 8 | self.buf[1]
0 commit comments