Raspberry Pi - SPI Communication
What will be the output of the following code snippet?
import spidev spi = spidev.SpiDev() spi.open(0, 0) response = spi.xfer2([0x01, 0x02, 0x03]) spi.close() print(response)
