https://github.com/frameworkcomputer/is31fl3741-rs
Rust Driver for Lumissil Microsystem's IS31FL3741 IC
https://github.com/frameworkcomputer/is31fl3741-rs
Last synced: 11 days ago
JSON representation
Rust Driver for Lumissil Microsystem's IS31FL3741 IC
- Host: GitHub
- URL: https://github.com/frameworkcomputer/is31fl3741-rs
- Owner: FrameworkComputer
- License: mit
- Created: 2023-08-29T02:21:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-14T17:25:07.000Z (2 months ago)
- Last Synced: 2026-01-14T19:20:40.303Z (2 months ago)
- Language: Rust
- Size: 104 KB
- Stars: 2
- Watchers: 2
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://crates.io/crates/is31fl3741)
[](https://docs.rs/is31fl3741/latest/is31fl3741/)
[](https://github.com/FrameworkComputer/is31fl3741-rs/actions/workflows/lint.yml)
[](https://github.com/FrameworkComputer/is31fl3741-rs/actions/workflows/build.yml)
# is31fl3741 driver
Driver for [Lumissil Microsystem's IS31FL3741 integrated circuit](https://www.lumissil.com/assets/pdf/core/IS31FL3741_DS.pdf). Some of the major features of this library are:
1. Use of embedded HAL traits (works with any embedded device that supports the required traits). This means that this driver is platform agnostic.
2. Library features (only turn on what devices you need to save compiled binary space).
3. [Examples](./examples) on how to use this driver.
## Install
To install this driver in your project add the following line to your `Cargo.toml`'s `dependencies` table:
```toml
is31fl3741 = "0.4.0"
```
By default this version will only contain the core driver.
To use a preconfigured device ([Framework LED Matrix](https://frame.work/tw/en/products/16-led-matrix) or [Adafruit 13x9 RGB LED Matrix](https://www.adafruit.com/product/5201)),
you would need to change this line to include that device:
```toml
is31fl3741 = { version = "0.4.0", features = ["framework_ledmatrix"] }
is31fl3741 = { version = "0.4.0", features = ["adafruit_rgb_13x9"] }
```
## Graphics
This driver contains optional support for the [embedded-graphics](https://docs.rs/embedded-graphics/latest/embedded_graphics/) library.
Enable the `embedded_graphics` feature to use it.
The `adafruit_rgb/gaypride` example shows off a use of this.
## Inspiration
This driver is ~~ripped off~~ modified from [gleich](https://github.com/gleich/)'s [is31fl3731 crate](https://github.com/gleich/is31fl3731).
I was originally planning on just making a PR, but the driver ended up too different.
That driver is a port of [adafruit's driver for the is31fl3731](https://github.com/adafruit/Adafruit_CircuitPython_IS31FL3731) in the Rust programming language.