aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/display.rs
blob: 77bacf68f33dc0d7b31ae24aa8ee0ce9c540fa38 (plain)
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);
    }
}