A simple but powerful library to control WS2812b LED panel.
Project description
LED Wall Python Library
A simple but powerful python library to manipulate WS2812b LED panel. Panels cand be connected via USB cable or accessed via UDP. This library only supports Python 3 but is OS independent.
The library is intended to be used in conjunction with aa arduino or nodemcu tat controls a bunch of LEDs. Of course, you can write sketches to controll the LEDs directly in c using the arduino ide. But using python on a raspberry or some other computer will offer you more flexibility and speed in development. Also, you can leverage from wide range of existing python libraries. With just a few lines of code, you can integrate gamepads using the awesome inputs library.
For more information, examples, installation guides and the arduino/nodemcu sketches checkout my git repository.
Also an online documentation for the library is available on readthedocs <https://readthedocs.org>
_.
Example script
The following script shows the basic usage of the library. I tried to keep things pythonic.
import ledwall.components as comp
# Create a new display instance. Using a SerialSender to
# send the color data to the arduino.
# Setting the desired framerate is 15
s = comp.SerialSender(portName='/dev/ttyACM0', baudrate=1000000)
d = comp.Display(16,32, s, framerate=15)
# Defining a few basic colors
red = comp.RGBColor.fromIntValues(255,0,0)
green = comp.RGBColor.fromIntValues(0,255,0)
d.fill(green)
d.setPixel(0,3,red)
d.setPixel(14,23,red)
d.update()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ledwall-1.0.12.tar.gz
.
File metadata
- Download URL: ledwall-1.0.12.tar.gz
- Upload date:
- Size: 31.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5rc1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99460fcd05d1641f1570ba3b62702d2eb07d3f67a495e88dc52370ae6bf06813 |
|
MD5 | 68d598e3f5f59efb6b0a29d9cb2ba8f6 |
|
BLAKE2b-256 | a13736f07aa7fed94afae12aafb32a5d6f094d6d45061b43aec8d23512d53e28 |
File details
Details for the file ledwall-1.0.12-py3-none-any.whl
.
File metadata
- Download URL: ledwall-1.0.12-py3-none-any.whl
- Upload date:
- Size: 54.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.5rc1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2071714ca8f4df2ed1625f2971965cbb0a1e4fe15f01f222055ac552692b43d |
|
MD5 | 91b0f430dd8c02a366b68fad6145ceb5 |
|
BLAKE2b-256 | f2862f57a343e1372c224b6fecb93cd9389e6f5fead525c29fcb967eccc8a0ed |