When creating SPI on the default pins on the latest 6.1.0 beta 2 I receive a value error ValueError: IO36 in use. This happens both when I create the SPI myself spi = busio.SPI(board.IO36, MOSI=board.MOSI, MISO=board.MISO) I get the same error as well. But when I create this bus by hand in the 6.0.0 release it works fine.
Sample 1:
import board
spi = board.SPI()
Sample 2:
import board, busio
spi = busio.SPI(board.IO36, MOSI=board.MOSI, MISO=board.MISO)
When creating SPI on the default pins on the latest
6.1.0 beta 2I receive a value errorValueError: IO36 in use. This happens both when I create the SPI myselfspi = busio.SPI(board.IO36, MOSI=board.MOSI, MISO=board.MISO)I get the same error as well. But when I create this bus by hand in the6.0.0release it works fine.Sample 1:
Sample 2: