LS013B7DH03
LS013B7DH03 Sharp LCD driver for embedded-hal v1.0
Stand alone usage
Simply add the driver to your Cargo.toml:
= { = "0.4" }
Use:
use *;
let mut buffer = ;
let mut display = new;
for x in 10..100
display.flush;
embedded-graphics usage
An optional implementation for the embeddded-graphics 2D graphics library is provided by the optional embdded_graphics feature:
= { = "0.4", = ["embedded_graphics"] }
Use:
use *;
use ;
let mut buffer = ;
let mut display = new;
let circle = new.into_styled;
let _ = circle.draw;
display.flush;