Chore: Started moving individual components out into modules. Started with GPS. Display and i2c driver to follow.

This commit is contained in:
2023-11-06 23:20:12 +00:00
parent a880586321
commit 6625351e38
3 changed files with 82 additions and 51 deletions

View File

@ -1,3 +1,11 @@
use embedded_graphics::{
prelude::*,
mono_font::{ascii::FONT_7X13, ascii::FONT_10X20, MonoTextStyle},
pixelcolor::BinaryColor,
text::{Text, Alignment},
};
/// Enum to make clear the stage of failure of the display
#[derive(Debug)]
pub enum DisplayError {