11eb2584ef
Arduino Uno + WS2812B LED strip controller with a text-based lightshow system. Shows are defined as .txt files (hex color + fade duration per step), converted to PROGMEM headers by convert_all.py, and navigated at runtime via a debounced button (tap/double-tap/hold). BSD 2-Clause license. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
434 B
Plaintext
13 lines
434 B
Plaintext
// Example: slow color cycle
|
|
// Smooth fades between colors with different speeds.
|
|
//
|
|
// Format: #RRGGBB, duration_ms
|
|
// duration_ms = time to fade FROM the previous color TO this one.
|
|
|
|
#FF0000, 0 // snap to red immediately
|
|
#00FF00, 3000 // 3 second fade to green
|
|
#0000FF, 0 // snap to blue
|
|
#FF00FF, 2000 // 2 second fade to purple
|
|
#FF8000, 1000 // 1 second fade to orange
|
|
#000000, 5000 // 5 second slow fade to off
|