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 // Draw some text
display.draw( display.draw(
Font12x16::render_str("Hello Rust!") let _ = Text::new("Hello Rust!", Point::new(x, y))
.stroke(Some(Color::Black)) .into_styled(text_style!(
.fill(Some(Color::White)) font = Font12x16,
.translate(Point::new(5, 50)) text_color = Black,
.into_iter(), background_color = White
))
.draw(display);
); );
// Transfer the frame data to the epd // Transfer the frame data to the epd