rpi-ws281x-matrix-python icon indicating copy to clipboard operation
rpi-ws281x-matrix-python copied to clipboard

WS281x LED Matrix Image Rendering Library

Results 5 rpi-ws281x-matrix-python issues
Sort by recently updated
recently updated
newest added

First of all I want to thank You for such a wonderful library. Even 0.0.2 version is pretty cool! :smile: I'm using it to reactively display some low latency animation...

Since Python2 reached EOL it makes sense to move to Python3. It is as easy as: `xrange` → `range` `from Queue import Queue` → `from queue import Queue`

https://github.com/whizzzkid/rpi-ws281x-matrix-python/blob/414d2e16fdd37686e0272de4f23008b1976d9e1c/ws281xMatrix.py#L105-L115 `self.render()` should probably use `self.next_frame()` https://github.com/whizzzkid/rpi-ws281x-matrix-python/blob/414d2e16fdd37686e0272de4f23008b1976d9e1c/ws281xMatrix.py#L90-L103

Hi I'm using your code in a rpi3 to run 1200 LEDs in a strip. My plan is run a 1200x1px GIF on the script. it will be 990 frames,...