python-spi icon indicating copy to clipboard operation
python-spi copied to clipboard

documentation seems incorrect

Open leaf-node opened this issue 9 years ago • 1 comments

This seems to be a contradiction:

import spi
spi = SPI("/dev/spidev1.0")

One would have to do either of the following:

from spi import *
spi = SPI("/dev/spidev1.0")
import spi
x = spi.SPI("/dev/spidev1.0")

leaf-node avatar Jul 06 '16 02:07 leaf-node

Judging by the issue list, the author has not worked on this package in quite some time.

QuantumFluxCapacitor avatar May 03 '21 17:05 QuantumFluxCapacitor