Update Tlc59711RgbFeatures.h (#839)

This commit is contained in:
lolimpol
2024-09-14 21:39:28 +02:00
committed by GitHub
parent 3deb46d0ae
commit 773613a1c5

View File

@@ -161,14 +161,20 @@ private:
};
class Tlc59711RgbFeature :
class Tlc59711RgbFeature : // RGB only
public Neo3WordFeature<ColorIndexR, ColorIndexG, ColorIndexB>,
public Tlc59711ElementsSettings
{
};
class Tlc59711RgbwFeature :
class Tlc59711RgbwFeature : // RGB + warmer white
public Neo4WordFeature<ColorIndexR, ColorIndexG, ColorIndexB, ColorIndexW>,
public Tlc59711ElementsSettings
{
};
class Tlc59711RgbwcFeature : // RGB + warmer white + cooler white in that order
public Neo5WordFeature<ColorIndexR, ColorIndexG, ColorIndexB, ColorIndexWW, ColorIndexCW>,
public Tlc59711ElementsSettings
{
};