Driver for Lumissil Microsystem's IS31FL3731 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
is31fl3731 = "1.0.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
is31fl3732 = { version = "1.0.0", features = ["charlie_bonnet"] }
Currently this library only supports some basic functions of the matrix (e.g. setup, fill, pixels). A few other features need to be implemented:
This driver is a port of adafruit's driver for the is31fl3731 in the rust programming language.