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

Pure Python SPI interface using spidev

Results 10 python-spi issues
Sort by recently updated
recently updated
newest added

I get an error/exit from line 138 "w+". Can anyone tell me what that symbolism is supposed to do? (I'm a newbie) bocephasj

As the last few issues have not been answered I am asking this question to prevent future time wasting waiting for answers that might never come. Sorry, but I must...

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")...

Two issues needed fixed. First spidev is not buffered so we need to open it as an unbuffered binary file. Second ctypes.string_at returns a bytes object instead of a str...

Hi, I'm running your code from a Raspberry Pi 3 Model B where it runs just fine under sudo rights, but without I get the following error: ``` Python 3.5.3...

@tomstokes Hi, is the python-spi support 16bits read at on time? Could i pip install the module? thanks.

Hello, I have an IC which needs CS to be continuously low at some point in order to read the output codes it is producing. I have set `spi.cs_high =...

While running "python setup.py install" , i am getting below error error: [Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/spi.py Please tell me where i am missing anything

It took me some time to debug this. Transfer method worked pretty random when list of integers were converted literally to such string: "[1, 2, 3]" not to binary string...