You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# micropython I2C doesn't have a corresponding "i2c_rdwr" function like smbus2, so we will make our own by passing stop=False to not send stop bits between repeated transfers
Custom method used for 16-bit (or greater) register reads
209
-
:param address: 7-bit address
210
-
:param write_message: list with register(s) to read
211
-
:param read_nbytes: number of bytes to be read
212
-
213
-
:return: response of read transaction
214
-
:rtype: list
215
-
"""
216
-
217
-
# micropython I2C doesn't have a corresponding "i2c_rdwr" function like smbus2, so we will make our own by passing stop=False to not send stop bits between repeated transfers
0 commit comments