Raspberry Pi - SPI Communication
Given this Python code snippet using spidev on Raspberry Pi:
What will be the output format of the print statement?
import spidev spi = spidev.SpiDev() spi.open(0, 0) spi.max_speed_hz = 1000000 response = spi.xfer2([0xAA, 0xBB]) print(response)
What will be the output format of the print statement?
