27 lines
418 B
C++
27 lines
418 B
C++
#pragma once
|
|
|
|
enum class EffectId
|
|
{
|
|
STATIC,
|
|
CIRCULAR,
|
|
ALEXA_SWIPE,
|
|
RANDOM_TWO_COLOR_INTERPOLATION,
|
|
SWIPE_AND_CHANGE, // combination of ALEXA_SWIPE and RANDOM_TWO_COLOR_INTERPOLATION
|
|
REVERSE_SWIPE,
|
|
STATIC_DETAILED,
|
|
};
|
|
|
|
template <EffectId id>
|
|
struct EffectIdToConfig
|
|
{
|
|
};
|
|
|
|
template <typename EffectConfig>
|
|
struct EffectConfigToId
|
|
{
|
|
};
|
|
|
|
template <EffectId id, typename TLedStrip>
|
|
struct EffectIdToClass
|
|
{
|
|
}; |