2024-10-30 20:54:49 +01:00
|
|
|
#[cfg(feature="embedded-graphics")]
|
|
|
|
pub mod embedded_graphics_lib;
|
|
|
|
|
|
|
|
#[cfg(feature="smart-leds")]
|
|
|
|
pub mod smart_leds_lib;
|
|
|
|
|
2024-10-29 11:51:25 +01:00
|
|
|
use crate::render::{Surface, Display};
|
|
|
|
use crate::task::Task;
|
|
|
|
|
|
|
|
pub trait DisplayInit {
|
|
|
|
fn new_display<S: Surface>() -> impl Display<S> + Task;
|
|
|
|
}
|