Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rm-hull/luma.led_matrix
Python module to drive LED Matrices & 7-segment displays (MAX7219) and RGB NeoPixels (WS2812 / APA102)
https://github.com/rm-hull/luma.led_matrix
apa102 dotstar led max7219 neopixel python raspberry-pi spi ws2812
Last synced: about 1 month ago
JSON representation
Python module to drive LED Matrices & 7-segment displays (MAX7219) and RGB NeoPixels (WS2812 / APA102)
- Host: GitHub
- URL: https://github.com/rm-hull/luma.led_matrix
- Owner: rm-hull
- License: mit
- Created: 2013-06-29T20:38:12.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-05-07T11:03:41.000Z (7 months ago)
- Last Synced: 2024-10-09T12:35:55.720Z (about 1 month ago)
- Topics: apa102, dotstar, led, max7219, neopixel, python, raspberry-pi, spi, ws2812
- Language: Python
- Homepage: https://luma-led-matrix.readthedocs.io
- Size: 11.1 MB
- Stars: 521
- Watchers: 38
- Forks: 156
- Open Issues: 20
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE.rst
Awesome Lists containing this project
README
`luma.core `__ **|**
`luma.docs `__ **|**
`luma.emulator `__ **|**
`luma.examples `__ **|**
`luma.lcd `__ **|**
luma.led_matrix **|**
`luma.oled `__Luma.LED_Matrix
===============
**Display drivers for MAX7219, WS2812, APA102**.. image:: https://github.com/rm-hull/luma.led_matrix/workflows/luma.led_matrix/badge.svg?branch=master
:target: https://github.com/rm-hull/luma.led_matrix/actions?workflow=luma.led_matrix.. image:: https://coveralls.io/repos/github/rm-hull/luma.led_matrix/badge.svg?branch=master
:target: https://coveralls.io/github/rm-hull/luma.led_matrix?branch=master.. image:: https://readthedocs.org/projects/luma-led_matrix/badge/?version=latest
:target: http://luma-led-matrix.readthedocs.io/en/latest/?badge=latest.. image:: https://img.shields.io/pypi/pyversions/luma.led_matrix.svg
:target: https://pypi.python.org/pypi/luma.led_matrix.. image:: https://img.shields.io/pypi/v/luma.led_matrix.svg
:target: https://pypi.python.org/pypi/luma.led_matrix.. image:: https://img.shields.io/pypi/dm/luma.led_matrix
:target: https://pypi.python.org/project/luma.led_matrixPython 3 library interfacing LED matrix displays with the MAX7219 driver (using
SPI), WS2812 (NeoPixels, inc Pimoroni Unicorn pHat/Hat and Unicorn Hat HD) and
APA102 (DotStar) on the Raspberry Pi and other Linux-based single board computers
- it provides a `Pillow `_-compatible drawing
canvas, and other functionality to support:* multiple cascaded devices
* LED matrix, seven-segment and NeoPixel variants
* scrolling/panning capability,
* terminal-style printing,
* state management,
* dithering to monochrome,
* pygame emulator,
* Python 3.7 and newer are supportedDocumentation
-------------
Full documentation with installation instructions and examples can be found on https://luma-led-matrix.readthedocs.io... image:: https://raw.githubusercontent.com/rm-hull/luma.led_matrix/master/doc/images/devices.jpg
:alt: max7219 matrixA LED matrix can be acquired for a few pounds from outlets
like `Banggood `_.
Likewise 7-segment displays are available from `Ali-Express
`_
or `Ebay `_... image:: https://raw.githubusercontent.com/rm-hull/luma.led_matrix/master/doc/images/IMG_2810.JPG
:alt: max7219 sevensegment.. image:: https://raw.githubusercontent.com/rm-hull/luma.led_matrix/master/doc/images/matrix_cascaded.jpg
:alt: max7219 cascaded
.. image:: https://raw.githubusercontent.com/rm-hull/luma.led_matrix/master/doc/images/box_helloworld.jpg
:alt: max7219 box
.. image:: https://raw.githubusercontent.com/rm-hull/luma.led_matrix/master/doc/images/emulator.gif
:alt: max7219 emulatorLicense
-------
The MIT License (MIT)Copyright (c) 2013-2023 Richard Hull & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.