Thanks for considering a contribution! LEDMatrix is built with help from the community and we welcome bug reports, plugins, documentation improvements, and code changes.
- Bugs / feature requests: open an issue using one of the templates
in
.github/ISSUE_TEMPLATE/. - Real-time discussion: the LEDMatrix Discord.
- Plugin development:
docs/PLUGIN_DEVELOPMENT_GUIDE.mdand theledmatrix-pluginsrepository. - Security issues: see
SECURITY.md. Please don't open public issues for vulnerabilities.
- Clone with submodules:
git clone --recurse-submodules https://github.com/ChuckBuilds/LEDMatrix.git cd LEDMatrix - For development without hardware, run the dev preview server:
See
python3 scripts/dev_server.py # then open http://localhost:5001docs/DEV_PREVIEW.mdfor details. - To run the full display in emulator mode:
EMULATOR=true python3 run.py
- To target real hardware on a Raspberry Pi, follow the install
instructions in the root
README.md.
pip install -r requirements.txt -r requirements-test.txt
pytestSee docs/HOW_TO_RUN_TESTS.md for details
on test markers, the per-plugin tests, and the web-interface
integration tests.
- Open an issue first for non-trivial changes. This avoids wasted work on PRs that don't fit the project direction.
- Create a topic branch off
main:feat/<short-description>,fix/<short-description>,docs/<short-description>. - Keep PRs focused. One conceptual change per PR. If you find adjacent bugs while working, fix them in a separate PR.
- Follow the existing code style. The pre-commit hooks run
flake8(E9, F63, F7, F82 plus bugbearBchecks),mypyonsrc/,bandit, andgitleaks— install the CLI withpython -m pip install pre-commit, then runpre-commit installso they run on every commit; HTML/JS inweb_interface/follows the patterns already intemplates/v3/andstatic/v3/. - Update documentation alongside code changes. If you add a
config key, document it in the relevant
*.mdfile (or, for plugins, inconfig_schema.jsonso the form is auto-generated). - Run the tests locally before opening the PR.
- Use the PR template —
.github/PULL_REQUEST_TEMPLATE.mdwill prompt you for what we need.
Conventional Commits is encouraged but not strictly enforced:
feat: add NHL playoff bracket displayfix(plugin-loader): handle missing class_name in manifestdocs: correct web UI port in TROUBLESHOOTING.mdrefactor(cache): consolidate strategy lookup
Keep the subject under 72 characters; put the why in the body.
LEDMatrix plugins live in their own repository:
ledmatrix-plugins.
Plugin contributions go through that repo's
SUBMISSION.md
process. The
hello-world plugin
is the canonical starter template.
Maintainer review is by @ChuckBuilds. Community review is welcome on any open PR — leave constructive comments, test on your hardware if applicable, and call out anything unclear.
This project follows the Contributor Covenant. By participating you agree to abide by its terms.
LEDMatrix is licensed under the GNU General Public License v3.0 or later. By submitting a contribution you agree to license it under the same terms (the standard "inbound = outbound" rule that GitHub applies by default).
LEDMatrix builds on
rpi-rgb-led-matrix,
which is GPL-2.0-or-later. The "or later" clause makes it compatible
with GPL-3.0 distribution.