leds/src/util/lights.rs

5 lines
115 B
Rust
Raw Normal View History

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