11 lines
198 B
C
11 lines
198 B
C
#pragma once
|
|
#include "FastLED/FastLED.h"
|
|
|
|
typedef struct ColorInfo {
|
|
const char *name;
|
|
NSFastLED::CRGB rgb;
|
|
} ColorInfo;
|
|
|
|
ColorInfo colorForName(const char *name);
|
|
const ColorInfo* allColors();
|