diff --git a/examples/embedded_linux_epd4in2/src/main.rs b/examples/embedded_linux_epd4in2/src/main.rs index 8638386..8780160 100644 --- a/examples/embedded_linux_epd4in2/src/main.rs +++ b/examples/embedded_linux_epd4in2/src/main.rs @@ -305,14 +305,14 @@ fn run() -> Result<(), std::io::Error> { // Using Style here .with_style(Style { fill_color: Some(Color::Black), - stroke_color: Some(Color::Black), + stroke_color: Some(Color::White), stroke_width: 0u8, // Has no effect on fonts }) .translate(Coord::new(50, 200)) .into_iter(), ); - display.draw( + display.draw( Font12x16::render_str("It's working-BoW!") // Using Style here .with_style(Style { @@ -324,6 +324,12 @@ fn run() -> Result<(), std::io::Error> { .into_iter(), ); + display.draw( + Line::new(Coord::new(60, 28), Coord::new(120, 28)) + .with_stroke(Some(Color::White)) + .into_iter(), + ); + let mut i = 0;