24 lines
296 B
C++
24 lines
296 B
C++
#pragma once
|
|
|
|
enum class EffectId
|
|
{
|
|
STATIC,
|
|
CIRCULAR,
|
|
ALEXA_SWIPE,
|
|
RANDOM_TWO_COLOR_INTERPOLATION
|
|
};
|
|
|
|
template <EffectId id>
|
|
struct EffectIdToConfig
|
|
{
|
|
};
|
|
|
|
template <typename EffectConfig>
|
|
struct EffectConfigToId
|
|
{
|
|
};
|
|
|
|
template <EffectId id, typename TLedStrip>
|
|
struct EffectIdToClass
|
|
{
|
|
}; |