#[derive(Clone, Copy)]
pub enum DisplaySize {
Display128x64,
}
impl DisplaySize {
pub fn dimensions(self) -> (u8, u8) {
match self {
DisplaySize::Display128x64 => (128, 64),
}
}
pub fn column_offset(self) -> u8 {
match self {
DisplaySize::Display128x64 => 0,
}
}
}