Skip to main content

Python bindings for Linux SPI access through spidev

Project description

Python Spidev

This project contains a python module for interfacing with SPI devices from user space via the spidev linux kernel driver.

All code is MIT licensed unless explicitly stated otherwise.

Usage

import spidev
spi = spidev.SpiDev()
spi.open(bus, device)
to_send = [0x01, 0x02, 0x03]
spi.xfer(to_send)

Settings

import spidev
spi = spidev.SpiDev()
spi.open(bus, device)

# Settings (for example)
spi.max_speed_hz = 5000
spi.mode = 0b01

...
  • bits_per_word
  • cshigh
  • loop - Set the "SPI_LOOP" flag to enable loopback mode
  • no_cs - Set the "SPI_NO_CS" flag to disable use of the chip select (although the driver may still own the CS pin)
  • lsbfirst
  • max_speed_hz
  • mode - SPI mode as two bit pattern of clock polarity and phase [CPOL|CPHA], min: 0b00 = 0, max: 0b11 = 3
  • threewire - SI/SO signals shared
  • read0 - Read 0 bytes after transfer to lower CS if cshigh == True

Methods

open(bus, device)

Connects to the specified SPI device, opening /dev/spidev<bus>.<device>

readbytes(n)

Read n bytes from SPI device.

writebytes(list of values)

Writes a list of values to SPI device.

writebytes2(list of values)

Similar to writebytes but accepts arbitrary large lists. If list size exceeds buffer size (which is read from /sys/module/spidev/parameters/bufsiz), data will be split into smaller chunks and sent in multiple operations.

Also, writebytes2 understands buffer protocol so it can accept numpy byte arrays for example without need to convert them with tolist() first. This offers much better performance where you need to transfer frames to SPI-connected displays for instance.

xfer(list of values[, speed_hz, delay_usec, bits_per_word])

Performs an SPI transaction. Chip-select should be released and reactivated between blocks. Delay specifies the delay in usec between blocks.

xfer2(list of values[, speed_hz, delay_usec, bits_per_word])

Performs an SPI transaction. Chip-select should be held active between blocks.

xfer3(list of values[, speed_hz, delay_usec, bits_per_word])

Similar to xfer2 but accepts arbitrary large lists. If list size exceeds buffer size (which is read from /sys/module/spidev/parameters/bufsiz), data will be split into smaller chunks and sent in multiple operations.

close()

Disconnects from the SPI device.

Changelog

3.6

  • Added read0 flag to enable reading 0 bytes after transfer to lower CS when cshigh == True

3.5

  • Fixed memory leaks

3.4

  • Changed license to MIT

3.0.1

  • Fixed README.md and CHANGELOG.md formatting, hopefully

3.0

2.0

Code sourced from http://elk.informatik.fh-augsburg.de/da/da-49/trees/pyap7k/lang/py-spi and modified.

Pre 2.0

spimodule.c originally uathored by Volker Thoms, 2009.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spidev-3.7.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

spidev-3.7-cp39-cp39-linux_armv7l.whl (38.5 kB view details)

Uploaded CPython 3.9

File details

Details for the file spidev-3.7.tar.gz.

File metadata

  • Download URL: spidev-3.7.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for spidev-3.7.tar.gz
Algorithm Hash digest
SHA256 ce628a5ff489f45132679879bff5f455a66abf9751af01843850155b06ae92f0
MD5 3074b983c687b1ec3a80833a7508642d
BLAKE2b-256 b599dd50af8200e224ce9412ad01cdbeeb5b39b2d61acd72138f2b92c4a6d619

See more details on using hashes here.

File details

Details for the file spidev-3.7-cp39-cp39-linux_armv7l.whl.

File metadata

File hashes

Hashes for spidev-3.7-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 6f9a51d72eac0785d3b7a839c5ee1b6a16a9b711fe053d56adecdf18786e2550
MD5 1466c8614755c332750e39edf6655131
BLAKE2b-256 8d4285b595079ff6819c94eeb6d337ae45b5a9924b7e7b4fdec8f27d29e53f76

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page