Initial commit

This commit is contained in:
Pascal Engélibert 2023-08-20 11:31:46 +02:00
commit 726632a35a
Signed by: tuxmain
GPG key ID: 3504BC6D362F7DCA
19 changed files with 2467 additions and 0 deletions

9
src/apps.rs Normal file
View file

@ -0,0 +1,9 @@
use crate::display::Display;
pub mod dial;
pub trait App {
type State;
fn update(display: &mut Display);
}