X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/93f393a931b0de75fe6cebb2ac0446d8e7ada120..ecba441c03a58ce97b3c1c769cb9c76675abbf7f:/src/adafruit_blinka/microcontroller/ft232h/i2c.py diff --git a/src/adafruit_blinka/microcontroller/ft232h/i2c.py b/src/adafruit_blinka/microcontroller/ft232h/i2c.py new file mode 100644 index 0000000..45b8921 --- /dev/null +++ b/src/adafruit_blinka/microcontroller/ft232h/i2c.py @@ -0,0 +1,34 @@ +from adafruit_blinka.microcontroller.ft232h.pin import Pin + +class I2C: + + def __init__(self): + # change GPIO controller to I2C + from pyftdi.i2c import I2cController + self._i2c = I2cController() + self._i2c.configure('ftdi:///1') + Pin.ft232h_gpio = self._i2c.get_gpio() + + def writeto(self, address, buffer, *, start=0, end=None, stop=True): + end = end if end else len(buffer) + port = self._i2c.get_port(address) + port.write(buffer[start:end], relax=stop) + + def readfrom_into(self, address, buffer, *, start=0, end=None, stop=True): + end = end if end else len(buffer) + port = self._i2c.get_port(address) + result = port.read(len(buffer[start:end]), relax=stop) + for i, b in enumerate(result): + buffer[start+i] = b + + def writeto_then_readfrom(self, address, buffer_out, buffer_in, *, + out_start=0, out_end=None, + in_start=0, in_end=None, stop=False): + out_end = out_end if out_end else len(buffer_out) + in_end = in_end if in_end else len(buffer_in) + port = self._i2c.get_port(address) + result = port.exchange(buffer_out[out_start:out_end], + in_end-in_start, + relax=True).tobytes() + for i, b in enumerate(result): + buffer_in[in_start+i] = b