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};
|
|
|
|
|
|
|
|
pub trait DisplayInit {
|
2024-11-02 15:22:37 +01:00
|
|
|
fn new_display<S: Surface>() -> impl Display<S>;
|
2024-10-29 11:51:25 +01:00
|
|
|
}
|