ab2c1b34b4
- Rename all show .txt files with NNN_ numeric prefix so order is explicit and controlled by filename (001_heartbeat_red through 006_party) - Drop HOME_SHOW special-casing from convert_all.py; show 0 is simply the lowest-numbered file - Add SHOW_FLAG_SPARKLE support: shows can declare '// flags: sparkle' to overlay random white flashes on top of the base color each frame - Wire sparkle into led_controller and config.h (SPARKLE_CHANCE/FRAMES) - Replace old placeholder/example shows with the six production shows Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24 lines
923 B
C
24 lines
923 B
C
// Generated by convert_all.py from: 001_heartbeat_red.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_001_HEARTBEAT_RED[] PROGMEM = {
|
|
{ 5, 0, 0, 0}, // #050000, 0ms
|
|
{209, 14, 41, 120}, // #D10E29, 120ms
|
|
{ 48, 0, 0, 100}, // #300000, 100ms
|
|
{209, 14, 41, 100}, // #D10E29, 100ms
|
|
{ 5, 0, 0, 600}, // #050000, 600ms
|
|
{209, 14, 41, 120}, // #D10E29, 120ms
|
|
{ 48, 0, 0, 100}, // #300000, 100ms
|
|
{209, 14, 41, 100}, // #D10E29, 100ms
|
|
{ 5, 0, 0, 600}, // #050000, 600ms
|
|
{209, 14, 41, 120}, // #D10E29, 120ms
|
|
{ 48, 0, 0, 100}, // #300000, 100ms
|
|
{209, 14, 41, 100}, // #D10E29, 100ms
|
|
{ 5, 0, 0, 600}, // #050000, 600ms
|
|
};
|
|
const uint16_t SHOW_001_HEARTBEAT_RED_LENGTH = 13;
|