musicmouse/espmusicmouse/lib/ledtl/effects/Common.h

23 lines
263 B
C
Raw Normal View History

2021-11-17 23:18:10 +01:00
#pragma once
2021-11-16 22:04:22 +01:00
2021-11-17 23:18:10 +01:00
enum class EffectId
2021-11-16 22:04:22 +01:00
{
STATIC,
CIRCULAR,
2021-11-19 17:22:09 +01:00
ALEXA_SWIPE,
2021-11-16 22:04:22 +01:00
};
2021-11-17 23:18:10 +01:00
template <EffectId id>
struct EffectIdToConfig
{
};
template <typename EffectConfig>
struct EffectConfigToId
{
};
template <EffectId id, typename TLedStrip>
struct EffectIdToClass
2021-11-16 22:04:22 +01:00
{
};