leds/src/util/lights.rs

5 lines
123 B
Rust
Raw Normal View History

2021-12-24 18:29:57 +00:00
use rs_ws281x::RawColor;
2021-12-23 19:34:26 +00:00
2021-12-24 18:29:57 +00:00
pub fn run_lights(strip: &[RawColor; crate::LED_SIZE]) {
2021-12-23 19:34:26 +00:00
println!("Value: {:?}", strip[0]);
}