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:
toml
is31fl3741 = "0.1.0"
By default this version will only contain the core driver. To use a preconfigured device, such as the Adafruit CharliePlex LED Matrix Bonnet, you would need to change this line to include that device:
toml
is31fl3741 = { version = "0.1.0", features = ["adafruit13x9"] }
## Inspiration This driver is ~~ripped off from~~ heavily based on 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.