Skip to content

bitbrain-za/smart-led-effects-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Collection of effects for Smart LEDs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages