lvgl-rs/lvgl/src/lib.rs
Rafael Carício 7578e6c20c
Integrate embeddedgraphics (#2)
* Attempt to print to device

* Send device as data

* Specific color mode

* Example using lvgl mixed with embedded graphics
2020-04-19 15:40:03 +02:00

7 lines
89 B
Rust

#![no_std]
pub mod display;
mod objx;
pub use display::DisplayDriver;
pub use objx::*;