8 releases (4 breaking)

0.5.0 Jan 12, 2024
0.4.1 May 10, 2021
0.4.0 May 24, 2020
0.3.0 May 10, 2020
0.1.1 Mar 29, 2020

#13 in No standard library

Download history 4875/week @ 2024-01-01 4738/week @ 2024-01-08 3135/week @ 2024-01-15 4318/week @ 2024-01-22 4769/week @ 2024-01-29 5056/week @ 2024-02-05 5699/week @ 2024-02-12 4438/week @ 2024-02-19 5190/week @ 2024-02-26 5326/week @ 2024-03-04 5090/week @ 2024-03-11 5730/week @ 2024-03-18 5169/week @ 2024-03-25 6270/week @ 2024-04-01 4998/week @ 2024-04-08 5395/week @ 2024-04-15

22,121 downloads per month
Used in 61 crates (34 directly)

MIT/Apache

9KB

Display interface

This Rust crate contains a no_std compatible interface in form of traits to bridge between a bus driver and a display driver. The goal here is to allow display drivers to be written in a hardware interface agnostic way and prevent code duplication and missing implementations.

Crate features

Additional features can be enabled by adding the following features to your Cargo.toml.

  • defmt-03: implements defmt::Format for DisplayError.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

A generic display interface

This crate contains an error type and traits to implement for bus interface drivers drivers to be consumed by display drivers. It abstracts over the different communication methods available to drive a display and allows a driver writer to focus on driving the display itself and only have to implement a single interface.

Dependencies

~175KB