smart_led_effects 0.1.8

A collection of effects for LED strips
Documentation
1
2
3
4
5
6
use palette::Srgb;

pub trait EffectIterator {
    fn name(&self) -> &'static str;
    fn next(&mut self) -> Option<Vec<Srgb<u8>>>;
}