Skip to main content

midi_controller/
led.rs

1//! LED ring rendering — re-exported from the `led-ring` crate.
2//!
3//! This module provides spatial patterns, temporal modifiers, and ring animation
4//! for WS2812/SK6812 LED rings. Generic over ring size.
5
6pub use led_ring::*;
7
8/// Default LEDs per ring for the pedalboard hardware.
9pub const LEDS_PER_RING: usize = 12;
10
11/// Frame type for 12-LED rings (pedalboard default).
12pub type RingFrame = [Rgb; LEDS_PER_RING];