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.
1 parent 77df4e9 commit 2ea6865Copy full SHA for 2ea6865
adafruit_tca9548a.py
@@ -83,7 +83,7 @@ def writeto(self, address, buffer, **kwargs):
83
84
def writeto_then_readfrom(self, address, buffer_out, buffer_in, **kwargs):
85
"""Pass thru for writeto_then_readfrom."""
86
- """In linux, at least, this is a special kernel function call"""
+ #In linux, at least, this is a special kernel function call
87
if address == self.tca.address:
88
raise ValueError("Device address must be different than TCA9548A address.")
89
return self.tca.i2c.writeto_then_readfrom(address, buffer_out, buffer_in, **kwargs)
0 commit comments