| Crates.io | is31fl3741 |
| lib.rs | is31fl3741 |
| version | 0.4.0 |
| created_at | 2022-05-24 05:32:29.093323+00 |
| updated_at | 2024-10-21 17:07:59.432241+00 |
| description | Driver for Lumissil Microsystem's IS31FL3741 IC |
| homepage | |
| repository | https://github.com/FrameworkComputer/is31fl3741-rs |
| max_upload_size | |
| id | 592477 |
| size | 43,265 |
Driver for Lumissil Microsystem's IS31FL3741 integrated circuit. Some of the major features of this library are:
To install this driver in your project add the following line to your Cargo.toml's dependencies table:
is31fl3741 = "0.4.0"
By default this version will only contain the core driver.
To use a preconfigured device (Framework LED Matrix or Adafruit 13x9 RGB LED Matrix), you would need to change this line to include that device:
is31fl3741 = { version = "0.4.0", features = ["framework_ledmatrix"] }
is31fl3741 = { version = "0.4.0", features = ["adafruit_rgb_13x9"] }
This driver contains optional support for the embedded-graphics library.
Enable the embedded_graphics feature to use it.
The adafruit_rgb/gaypride example shows off a use of this.
This driver is ripped off modified from gleich's is31fl3731 crate.
I was originally planning on just making a PR, but the driver ended up too differet.
That driver is a port of adafruit's driver for the is31fl3731 in the Rust programming language.