Files
tmp/src/led_display/mod.rs
Lionel Sambuc ba09e87c1e stars, moon, trees, houses and snow
* Version of Family Christmas 2024
2024-12-28 08:27:33 +01:00

14 lines
212 B
Rust

mod draw;
pub use draw::*;
pub trait Screen<Position, Color> {
fn show(&self);
fn clear(&mut self);
fn fill(&mut self, color: Color);
fn point(&mut self, position: Position, color: Color);
}