4 releases

0.1.3 Jul 9, 2024
0.1.2 Jul 9, 2024
0.1.1 Jul 9, 2024
0.1.0 Jul 9, 2024

#1448 in Embedded development

Download history 238/week @ 2024-07-04 57/week @ 2024-07-11 3/week @ 2024-07-25

57 downloads per month

MIT license

20KB
326 lines

Crates.io docs.rs

lint build

is31fl3729 driver

Driver for Lumissil Microsystem's IS31FL3729 integrated circuit. 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).

Install

To install this driver in your project add the following line to your Cargo.toml's dependencies table:

is31fl3729 = "0.1.3"

By default this version will only contain the core driver. To use a preconfigured device (currently just the FW16 Seven Segment Display Input Module), you would need to change this line to include that device:

is31fl3729 = { version = "0.1.3", features = ["sevensegment"] }

Inspiration

This driver was re/written by C. Scott Ananian.

This driver is ripped off modified from Framework's is31fl3741 crate which is itself ripped off modified from gleich's is31fl3731 crate.

That driver is a port of adafruit's driver for the is31fl3731 in the Rust programming language.

Dependencies

~71KB