#led-strip #ws2812 #neopixel #smart-leds

smart_led_effects

A collection of effects for LED strips

8 releases

0.1.7 Sep 19, 2023
0.1.6 Sep 18, 2023

#422 in Data structures

MIT license

55KB
1.5K SLoC

Smart LED Effects

This supplies a collection of effects for usage with individually addressable LED strips such as the WS2812b. Each effect returns a vector of colours that can then be sent to your LED driver.

The EffectIterator trait defines two methods: - name - next

name will just return the name as a static string slice. next will return the next page of the effect. It uses the Option enum, and in the future there will be One Shot effects that end and return None. For now, all effects will loop.

This crate borrows heavily from fastLED and tweaking4all. The majority of the effect art is taken straight from here, andd reimplemented in Rust.

Dimensionality

Currently only works for strips/loops. But someday the plan is to extend it.

Effects

- Breathe
- Bounce
- Collision
- Cylon
- Fire
- Meteor
- Morse
- ProgressBar
- Rainbow
- RunningLights
- SnowSparkle
- Strobe
- Timer
- Twinkle
- Wipe

Example Usage

[dependencies]
smart_led_effects = 0.1.7


use smart_led_effects::{
    strip::{self, EffectIterator},
    Srgb,
};

//...

    const COUNT: usize = 55;
    let effect = strip::Rainbow::new(COUNT, None);

    loop {
        let pixels = effect.next().unwrap();
    
        // show pixels

        thread::sleep(Duration::from_millis(10));
    }


References

Dependencies

~2.5MB
~52K SLoC