1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
use crate::board::pins::*; pub struct Display { } impl Display { pub fn new() -> Self { Self {} } pub fn init(&mut self) { log::info!("display Initialized!!"); } pub fn draw_text(&mut self, text: &str) { log::info!("{}", text); } }