RustFmt and some notes
This commit is contained in:
parent
bb693ac026
commit
83b3946d2f
1 changed files with 52 additions and 51 deletions
|
@ -1,18 +1,15 @@
|
|||
use embedded_graphics::{
|
||||
draw_target::DrawTarget,
|
||||
image::Image,
|
||||
mono_font::MonoTextStyle,
|
||||
prelude::*,
|
||||
text::Text
|
||||
draw_target::DrawTarget, image::Image, mono_font::MonoTextStyle, prelude::*, text::Text,
|
||||
};
|
||||
use profont::{
|
||||
PROFONT_12_POINT, PROFONT_14_POINT, PROFONT_24_POINT, PROFONT_7_POINT, PROFONT_9_POINT,
|
||||
};
|
||||
use profont::{PROFONT_12_POINT, PROFONT_14_POINT, PROFONT_24_POINT, PROFONT_9_POINT, PROFONT_7_POINT};
|
||||
use ssd1675::Color;
|
||||
use std::fmt::Debug;
|
||||
use tinybmp::Bmp;
|
||||
|
||||
mod data;
|
||||
|
||||
|
||||
pub fn get_weather<D>(display: &mut D)
|
||||
where
|
||||
D: DrawTarget<Color = Color>,
|
||||
|
@ -41,52 +38,56 @@ where
|
|||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
|
||||
Text::new(
|
||||
&format!("{:2.0}%", 32),
|
||||
Point::new(10, 62),
|
||||
MonoTextStyle::new(&PROFONT_14_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
Text::new(
|
||||
&format!("{:2.0}%", 32),
|
||||
Point::new(10, 62),
|
||||
MonoTextStyle::new(&PROFONT_14_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
|
||||
Text::new(
|
||||
&format!("Regen\nWahrsch."),
|
||||
Point::new(44, 55),
|
||||
MonoTextStyle::new(&PROFONT_7_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
Text::new(
|
||||
&format!("Regen\nWahrsch."),
|
||||
Point::new(44, 55),
|
||||
MonoTextStyle::new(&PROFONT_7_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
|
||||
Text::new(
|
||||
&format!("{:2.0}%", 2.0),
|
||||
Point::new(10, 81),
|
||||
MonoTextStyle::new(&PROFONT_14_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
Text::new(
|
||||
&format!("{:2.0}%", 2.0),
|
||||
Point::new(10, 81),
|
||||
MonoTextStyle::new(&PROFONT_14_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
|
||||
Text::new(
|
||||
&format!("Luft\nfeuchte"),
|
||||
Point::new(44, 74),
|
||||
MonoTextStyle::new(&PROFONT_7_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
Text::new(
|
||||
&format!("Luft\nfeuchte"),
|
||||
Point::new(44, 74),
|
||||
MonoTextStyle::new(&PROFONT_7_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
|
||||
Text::new(
|
||||
&format!("{:2.0}", 3),
|
||||
Point::new(20, 100),
|
||||
MonoTextStyle::new(&PROFONT_14_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
// TODO(feliix42): Color based on the value.
|
||||
// https://de.wikipedia.org/wiki/UV-Index
|
||||
Text::new(
|
||||
&format!("{:2.0}", 3),
|
||||
Point::new(20, 100),
|
||||
MonoTextStyle::new(&PROFONT_14_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
|
||||
Text::new(
|
||||
&format!("UV\nIdx"),
|
||||
Point::new(44, 93),
|
||||
MonoTextStyle::new(&PROFONT_7_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
Text::new(
|
||||
&format!("UV\nIdx"),
|
||||
Point::new(44, 93),
|
||||
MonoTextStyle::new(&PROFONT_7_POINT, Color::Black),
|
||||
)
|
||||
.draw(display)
|
||||
.expect("error drawing text");
|
||||
|
||||
// TODO(feliix42): use test data to draw a forecast using
|
||||
// https://crates.io/crates/embedded-plots
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue