Skip to main content

A library to control WS2812 LEDs with a Raspberry Pi 5

Project description

WS2812 interface for the Raspberry Pi 5

This is a simple interface for the WS2812 LED strip for the Raspberry Pi 5. Currently it only supports communication over the SPI interface.

This library was created for the Raspberry Pi 5 because the previous go-to library rpi_ws281x is not (yet?) compatible. It should work on other Raspberry Pi models as well, but this has not been tested.

Thanks to this repository for the research on the SPI communication.

Preparation

Enable SPI on the Raspberry Pi 5:

sudo raspi-config

Navigate to Interfacing Options -> SPI and enable it.

Optional: add your user to the spi group to avoid running the script as root:

sudo adduser YOUR_USER spidev

Installation

pip install rpi5-ws2812

Wiring

Connect the DIN (Data In) pin of the WS2812 strip to the MOSI (Master Out Slave In) pin of the Raspberry Pi 5. The MOSI pin is pin 19 / GPIO10 on the Raspberry Pi 5.

Usage

from rpi5_ws2812.ws2812 import WS2812SpiDriver
import time

if __name__ == "__main__":

    # Initialize the WS2812 strip with 100 leds and SPI channel 0, CE0
    strip = WS2812SpiDriver(spi_bus=0, spi_device=0, led_count=100).get_strip()
    while True:
        strip.set_all_pixels(Color(255, 0, 0))
        strip.show()
        time.sleep(2)
        strip.set_all_pixels(Color(0, 255, 0))
        strip.show()
        time.sleep(2)

Use this library in a docker container

To use this library in a docker container, you need to add the --device flag to the docker run command to give the container access to the SPI interface. You also need to run the container in privileged mode.

Example:

docker run --device /dev/spidev0.0 --privileged YOUR_IMAGE
services:
  your_service:
    image: YOUR_IMAGE
    privileged: true
    devices:
      - /dev/spidev0.0

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

rpi5_ws2812-0.1.1.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

rpi5_ws2812-0.1.1-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file rpi5_ws2812-0.1.1.tar.gz.

File metadata

  • Download URL: rpi5_ws2812-0.1.1.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for rpi5_ws2812-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d814c9f80dbf5095aff1b4a7aca519b50e2848c0ab9ad1e41f2b947ec1dff3e6
MD5 b97e730843015ebd63cb2e169f394159
BLAKE2b-256 d05cb904025b1bcbb7984a80254a125324d20a79213333fb3dd7ed7a86524de8

See more details on using hashes here.

File details

Details for the file rpi5_ws2812-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: rpi5_ws2812-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 4.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for rpi5_ws2812-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d9df78e57fedb6cabf4d4091017c60113d064724e678e4ce065adc5abc6fb497
MD5 ac562244f9991401194dbff411c1b79a
BLAKE2b-256 03fe0593d3c36eef7f9e9c414e130cff20cb2cfeaf158def400fe1c6543e7270

See more details on using hashes here.

Supported by

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