Fixed Readme Example

embedded-hal-1.0
Caemor 2020-03-26 20:49:15 +01:00
parent 3871c1672e
commit 5ba408d5a7
1 changed files with 7 additions and 5 deletions

View File

@ -22,11 +22,13 @@ let mut display = Display::new(epd.width(), epd.height(), &mut buffer.buffer);
// Draw some text
display.draw(
Font12x16::render_str("Hello Rust!")
.stroke(Some(Color::Black))
.fill(Some(Color::White))
.translate(Point::new(5, 50))
.into_iter(),
let _ = Text::new("Hello Rust!", Point::new(x, y))
.into_styled(text_style!(
font = Font12x16,
text_color = Black,
background_color = White
))
.draw(display);
);
// Transfer the frame data to the epd