| Crates.io | matricks |
| lib.rs | matricks |
| version | 0.3.1 |
| created_at | 2023-04-15 02:45:52.692318+00 |
| updated_at | 2023-10-24 00:46:55.011323+00 |
| description | An extensible LED matrix control tool for Raspberry Pis |
| homepage | https://github.com/wymcg/matricks |
| repository | https://github.com/wymcg/matricks |
| max_upload_size | |
| id | 839673 |
| size | 121,092 |
"Teach an old matrix new tricks..."
Matricks is a WASM-based extensible LED matrix control tool intended for use on Raspberry Pi devices. LED matrix functionality is defined by user-developed plugins, or "tricks", which can be developed in any language that is supported by the Extism PDK. To simulate plugins while you're developing them, check out Simtricks!
apt install libclang-dev libssl-devcargo install matricksFor convenience, pre-compiled binaries are available in the releases tab.
MATRICKS_VERSION=0.3.1 && \
wget https://github.com/wymcg/matricks/releases/download/v$MATRICKS_VERSION/matricks_$MATRICKS_VERSION && \
chmod +x matricks_$MATRICKS_VERSION && \
./matricks_$MATRICKS_VERSION
rustup target add aarch64-unknown-linux-muslcargo install crosscross build --release --target aarch64-unknown-linux-muslThis section describes basic usage of Matricks. For general usage information, run matricks help.
For a list of plugins to try, there are several example plugins listed in the examples README.
You may manually provide a configuration to Matricks using matricks manual.
To run a plugin (or a set of plugins in a directory), Matricks can be invoked as follows:
matricks manual [OPTIONS] --path <PLUGIN_PATH> --width <WIDTH> --height <HEIGHT>
This will run the plugin(s) at the given path on the connected matrix.
Other matrix and plugin configuration options are also available; See matricks help manual for more information.
Once you have confirmed that everything is working with matricks manual, you can save your configuration to a file using the matricks save command.
To save your configuration, Matricks can be invoked as follows:
matricks save <NEW_CONFIG_PATH> [OPTIONS] --path <PLUGIN_PATH> --width <WIDTH> --height <HEIGHT>
This is similar to matricks manual, but instead of running the plugin, Matricks will save the configuration information to a new TOML file at the given path.
matricks save has the same matrix and plugin configuration options as matricks manual.
See matricks help save for more information.
If you have a TOML configuration file (created either by hand or by running matricks save), you can use it using matricks auto.
To run Matricks with a configuration file, Matricks can be invoked as follows:
matricks auto <CONFIG_PATH>
This command will use the configuration information in the given file to drive the matrix.
See matricks help auto for more information.
If for any reason you need to clear all LEDs on the matrix, Matricks can be invoked as follows:
matricks clear --width <WIDTH> --height <HEIGHT>
See matricks help clear for more information.
To see logs from Matricks, prepend your command with RUST_LOG=matricks=info.
For example:
RUST_LOG=matricks=info matricks auto your_config.toml
Matricks requires some configuration before it can be used to drive a LED matrix. If these instructions are not followed, Matricks may not work as expected. This section paraphrases the instructions from the rpi_ws281x README.
The easiest way to enable SPI on Raspberry Pi is with the raspi-config command line tool.
Run sudo raspi-config and navigate to the SPI activation dialog by selecting Interface Options > SPI.
Add the following lines to /boot/config.txt:
| Device | Lines to Add |
|---|---|
| Raspberry Pi 3 | core_freq=250 |
| Raspberry Pi 4 | core_freq=500core_freq_min=500 |
On some distributions, it may be necessary to increase the maximum SPI transfer size by editing /boot/cmdline.txt and adding the following line:
spidev.bufsize=32768