You might already have the hardware on hand to easily interface I2C and SPI devices with Python scripts on your computer. The board seen above is an FT-2232 breakout board. These chips are often used ...
import subprocess import io import fcntl from time import sleep def crcCheck(msb, lsb, check): data32 = (msb << 16)|(lsb <<8)| check divisor = 0x988000 for i in range ...