Begin to split out display module

Move the display to a dedicated module so that things can begin to DRY
out
This commit is contained in:
Greg Hellings
2024-10-16 15:44:50 -05:00
parent 529a1be7df
commit 0904dce763
4 changed files with 56 additions and 21 deletions
+6
View File
@@ -0,0 +1,6 @@
#[derive(Debug, Clone)]
pub enum Message {
Pressed,
}
pub mod cell;