Skip to content

Remove stop kwarg and use write_then_readinto. #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions adafruit_tmp007.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,15 @@ def read_register(self, register):
def _read_u8(self, address):
with self._device as i2c:
self._BUFFER[0] = address & 0xFF
i2c.write(self._BUFFER, end=1, stop=False)
i2c.readinto(self._BUFFER, end=1)
i2c.write_then_readinto(self._BUFFER, self._BUFFER,
out_end=1, in_end=1)
return self._BUFFER[0]

def _read_u16(self, address):
with self._device as i2c:
self._BUFFER[0] = address & 0xFF
i2c.write(self._BUFFER, end=1, stop=False)
i2c.readinto(self._BUFFER, end=2)
i2c.write_then_readinto(self._BUFFER, self._BUFFER,
out_end=1, in_end=2)
return self._BUFFER[0]<<8 | self._BUFFER[1]

def _write_u8(self, address, val):
Expand All @@ -194,5 +194,4 @@ def _write_u16(self, address, val):
def _read_bytes(device, address, count, buf):
with device as i2c:
buf[0] = address & 0xFF
i2c.write(buf, end=1, stop=False)
i2c.readinto(buf, end=count)
i2c.write_then_readinto(buf, buf, out_end=1, in_end=count)