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