Getting started
led-ticker runs on a Raspberry Pi connected to RGB LED matrix panels. It reads a TOML config file, drives the panels, and updates content from various sources (RSS, weather, etc.).
Install
Section titled “Install”git clone https://github.com/JamesAwesome/led-ticker.gitcd led-tickermake devConfigure
Section titled “Configure”Copy an example config matching your hardware:
# Pi 4 + 5x32x16 panelscp config/config.example.toml config/config.toml
# Pi 5 + 8x P3 32x64 panels in vertical-serpentine layoutcp config/config.bigsign.example.toml config/config.tomlEdit config/config.toml to set up sections, widgets, and transitions.
Validate
Section titled “Validate”led-ticker validate config/config.tomlA clean config prints No issues found. and exits 0. Errors and warnings
print with their fix suggestions; see led-ticker validate.
# On the Pi:led-ticker --config config/config.toml
# Or via Docker:docker compose up -d --build