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>
28 lines
1.0 KiB
C
28 lines
1.0 KiB
C
// Generated by convert_all.py from: 006_party.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_006_PARTY[] PROGMEM = {
|
|
{255, 0, 0, 0}, // #FF0000, 0ms
|
|
{255, 0, 0, 150}, // #FF0000, 150ms
|
|
{255, 136, 0, 0}, // #FF8800, 0ms
|
|
{255, 136, 0, 150}, // #FF8800, 150ms
|
|
{255, 255, 0, 0}, // #FFFF00, 0ms
|
|
{255, 255, 0, 150}, // #FFFF00, 150ms
|
|
{ 0, 255, 0, 0}, // #00FF00, 0ms
|
|
{ 0, 255, 0, 150}, // #00FF00, 150ms
|
|
{ 0, 255, 255, 0}, // #00FFFF, 0ms
|
|
{ 0, 255, 255, 150}, // #00FFFF, 150ms
|
|
{ 0, 0, 255, 0}, // #0000FF, 0ms
|
|
{ 0, 0, 255, 150}, // #0000FF, 150ms
|
|
{255, 0, 255, 0}, // #FF00FF, 0ms
|
|
{255, 0, 255, 150}, // #FF00FF, 150ms
|
|
{255, 255, 255, 0}, // #FFFFFF, 0ms
|
|
{255, 255, 255, 150}, // #FFFFFF, 150ms
|
|
{ 0, 0, 0, 500}, // #000000, 500ms
|
|
};
|
|
const uint16_t SHOW_006_PARTY_LENGTH = 17;
|