test branch of embedded-graphics
parent
a75a9b74bd
commit
e1b76c73a3
|
|
@ -29,7 +29,8 @@ epd4in2_fast_update = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
||||||
embedded-graphics = "0.4.2"
|
# embedded-graphics = "0.4.2"
|
||||||
|
embedded-graphics = {git = "https://github.com/caemor/embedded-graphics", branch = "test-change"}
|
||||||
|
|
||||||
[dependencies.embedded-hal]
|
[dependencies.embedded-hal]
|
||||||
features = ["unproven"]
|
features = ["unproven"]
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ eink_waveshare_rs = { path = "../../", default-features = false, features = ["ep
|
||||||
|
|
||||||
linux-embedded-hal = "0.2.0"
|
linux-embedded-hal = "0.2.0"
|
||||||
|
|
||||||
embedded-graphics = "0.4.2"
|
# embedded-graphics = "0.4.2"
|
||||||
|
embedded-graphics = {git = "https://github.com/caemor/embedded-graphics", branch = "test-change"}
|
||||||
|
|
||||||
embedded-hal = { version = "0.2.1", features = ["unproven"] }
|
embedded-hal = { version = "0.2.1", features = ["unproven"] }
|
||||||
|
|
|
||||||
|
|
@ -193,15 +193,15 @@ fn run() -> Result<(), std::io::Error> {
|
||||||
display.set_rotation(DisplayRotation::Rotate0);
|
display.set_rotation(DisplayRotation::Rotate0);
|
||||||
display.draw(
|
display.draw(
|
||||||
Font6x8::render_str("Rotate 0!")
|
Font6x8::render_str("Rotate 0!")
|
||||||
.with_fill(Some(Color::White))
|
|
||||||
.with_stroke(Some(Color::Black))
|
.with_stroke(Some(Color::Black))
|
||||||
|
.with_fill(Some(Color::White))
|
||||||
.translate(Coord::new(5, 50))
|
.translate(Coord::new(5, 50))
|
||||||
.into_iter(),
|
.into_iter(),
|
||||||
);
|
);
|
||||||
display.draw(
|
display.draw(
|
||||||
Font6x8::render_str("Rotate 0 - inverse!")
|
Font6x8::render_str("Rotate 0 - inverse!")
|
||||||
.with_fill(Some(Color::Black))
|
|
||||||
.with_stroke(Some(Color::White))
|
.with_stroke(Some(Color::White))
|
||||||
|
.with_fill(Some(Color::Black))
|
||||||
.translate(Coord::new(50, 70))
|
.translate(Coord::new(50, 70))
|
||||||
.into_iter(),
|
.into_iter(),
|
||||||
);
|
);
|
||||||
|
|
@ -241,6 +241,8 @@ fn run() -> Result<(), std::io::Error> {
|
||||||
display.set_rotation(DisplayRotation::Rotate180);
|
display.set_rotation(DisplayRotation::Rotate180);
|
||||||
display.draw(
|
display.draw(
|
||||||
Font6x8::render_str("Rotate 180!")
|
Font6x8::render_str("Rotate 180!")
|
||||||
|
.with_stroke(Some(Color::Black))
|
||||||
|
.with_fill(Some(Color::White))
|
||||||
.translate(Coord::new(5, 50))
|
.translate(Coord::new(5, 50))
|
||||||
.into_iter(),
|
.into_iter(),
|
||||||
);
|
);
|
||||||
|
|
@ -258,6 +260,8 @@ fn run() -> Result<(), std::io::Error> {
|
||||||
display.set_rotation(DisplayRotation::Rotate270);
|
display.set_rotation(DisplayRotation::Rotate270);
|
||||||
display.draw(
|
display.draw(
|
||||||
Font6x8::render_str("Rotate 270!")
|
Font6x8::render_str("Rotate 270!")
|
||||||
|
.with_stroke(Some(Color::Black))
|
||||||
|
.with_fill(Some(Color::White))
|
||||||
.translate(Coord::new(5, 50))
|
.translate(Coord::new(5, 50))
|
||||||
.into_iter(),
|
.into_iter(),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue