light-control/src/patterns/mod.rs
Michael Sippel 58e95eb2bc
patterns from saturday
- add wheel input parameter
- gastel fade
- alternate
2024-05-02 19:34:34 +02:00

24 lines
414 B
Rust

pub mod breathing;
pub mod strobe;
pub mod arctic_rain;
pub mod pastel_fade;
pub mod gastel_fade;
pub mod wheel;
pub mod alternate;
#[path = "uboot_prüfstand_fade.rs"]
pub mod uboot;
pub use {
breathing::Breathing,
strobe::Strobe,
arctic_rain::ArcticRain,
pastel_fade::PastelFade,
gastel_fade::GastelFade,
uboot::UbootPrüfstandFade,
wheel::Wheel,
alternate::Alternate
};