Skip to main content

A library to control WS2812 LEDs using SPI on Orange Pi

Project description

WS2812-GPT-LP

This library allows you to control WS2812 LEDs using SPI on Orange Pi. Tested on Orange Pi 5 plus. Cette bibliothèque permet de contrôler les LEDs WS2812 via SPI sur Orange Pi.

Important Note

You must solder a 100nF capacitor between the VCC and GND of the WS2812 LEDs to avoid interference.

Before you start

Depending on the board you are using, multiple SPI buses may be enabled depending on which pin you want to use.
For example, on the Orange Pi 5 Plus, there are 3 SPI buses: SPI0-m2, SPI4-m1, and SPI4-m2.
You must connect the signal line of the WS2812 LEDs to the MOSI pin of the SPI bus that you have activated on your Orange Pi.
You should refer to this table: http://www.orangepi.org/orangepiwiki/index.php/Orange_Pi_5_Plus#40_pin_SPI_test_2

If you enable SPI0-m2, the LED must be connected to pin 19.
If you enable SPI4-m1, the LED should be connected to pin 12.
If you enable SPI4-m2, the LED should be connected to pin 8.

Example of SPI4-m2 activation: you must edit the file /boot/armbianenv.txt or /boot/dietpiEnv.txt
and add this line: overlays=spi4-m2-cs0-spidev

The different activated modules must be separated by a space:
overlays=i2c2-m0 spi4-m2-cs0-spidev pwm11-m0

After saving your file, you must reboot.

After reboot, you can check the correct loading of the SPI module by running: ls /dev/spi*
It should return something like: /dev/spidev4.0

Notice the ending /dev/spidev4.0 => 4 and 0 you will need to config the library. First number is spi_bus, second number is spi_device, hold it.

Remember that all this concerns exclusively the Orange Pi 5 Plus board. If you use another board, you must refer to its documentation to know the SPI buses.

Installation

pip install spidev ws2812-gpt-lp

Usage example

from ws2812_gpt_lp import WS2812

Configuration

If numbers of LED you are using is 12:
num_leds = 12
ws2812 = WS2812(spi_bus=4, spi_device=0, num_leds=num_leds)

Example - Set colors for 8 LEDs

The color is defined by a value which goes from 0 to 255 the maximum.

colors = [
(255, 0, 0), # Red
(0, 255, 0), # Green
(0, 0, 255), # Blue
(255, 255, 0), # Yellow
(0, 255, 255), # Cyan
(255, 0, 255), # Magenta
(255, 255, 255), # White
(0, 0, 0) # Black (off)
]

ws2812.send_colors(colors)

Change the color of the first LED to blue

ws2812.send_color(0, 0, 0, 255) # send_color( , , , )

Turn off all LEDs

ws2812.send_off()

Set all LEDs to red

ws2812.send_to_all(255, 0, 0) # send_to_all( , , )

Close the SPI connection

ws2812.close()

Example.py

  • Connect the plus of the ws2812 LED to the VCC 5V pin.
  • Connect the Sign IN pin of the LED to physical pin 8 of the Orange Pi.
  • Connect the GND pin of the LED to any GND pin di pi.
import spidev
from ws2812_gpt_lp import WS2812
import time

if __name__ == "__main__":
    num_leds = 12
    ws2812 = WS2812(spi_bus=4, spi_device=0, num_leds=num_leds)

    # Changer la couleur de la première LED à bleu
    ws2812.send_color(0, 0, 0, 255)
    time.sleep(5)

    # Éteindre toutes les LEDs
    ws2812.send_off()
    time.sleep(1)

    # Envoyer la couleur rouge à toutes les LEDs
    ws2812.send_to_all(255, 0, 0)
    time.sleep(5)

    # Éteindre toutes les LEDs
    ws2812.send_off()

    # Terminer la connexion SPI
    ws2812.close()

run with :

python3 Example.py

License

This project is licensed under the MIT License - see the LICENSE file for details.

Authors

This library was jointly developed by Laurent Pastor and ChatGPT 4.

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

ws2812_gpt_lp-0.1.6.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ws2812_gpt_lp-0.1.6-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file ws2812_gpt_lp-0.1.6.tar.gz.

File metadata

  • Download URL: ws2812_gpt_lp-0.1.6.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.2

File hashes

Hashes for ws2812_gpt_lp-0.1.6.tar.gz
Algorithm Hash digest
SHA256 ff84d61454d625fef9ff41c428b49c3f62db5baf993769b98520498f7d39e4c6
MD5 1dea76904c347819c4b45f05d0f577fa
BLAKE2b-256 ecf9a3e39a14ca69aff29fa575bdd73e955b6d28a02ecee82081fb5eec0fcfe1

See more details on using hashes here.

File details

Details for the file ws2812_gpt_lp-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: ws2812_gpt_lp-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.2

File hashes

Hashes for ws2812_gpt_lp-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 dad1810ec39f2a415ca83f30e738c45f933be36412e46e323245d3edc12b2495
MD5 d70a9465279bb43cc16f8d47c6d90e6e
BLAKE2b-256 d46a53545d3e4a8efd82f3914e762978438a62556227684615b317a361e8b6c3

See more details on using hashes here.

Supported by

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