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>
14 lines
442 B
C
14 lines
442 B
C
// Generated by convert_all.py from: example_pulse.txt
|
|
// Do not edit manually — edit the .txt file and run: make shows
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#pragma once
|
|
#include "lightshow_format.h"
|
|
|
|
const Step SHOW_EXAMPLE_PULSE[] PROGMEM = {
|
|
{ 32, 0, 0, 0}, // #200000, 0ms
|
|
{255, 0, 0, 1200}, // #FF0000, 1200ms
|
|
{ 32, 0, 0, 1200}, // #200000, 1200ms
|
|
};
|
|
const uint16_t SHOW_EXAMPLE_PULSE_LENGTH = 3;
|