This commit is contained in:
Michael Miller
2023-06-05 15:38:03 -07:00
committed by GitHub
parent fab5086a28
commit ebb5de07f8
5 changed files with 17 additions and 14 deletions

View File

@@ -14,6 +14,7 @@ RgbColor KEYWORD1
Rgb16Color KEYWORD1 Rgb16Color KEYWORD1
Rgb48Color KEYWORD1 Rgb48Color KEYWORD1
Rgbw64Color KEYWORD1 Rgbw64Color KEYWORD1
RgbwwColor KEYWORD1
HslColor KEYWORD1 HslColor KEYWORD1
HsbColor KEYWORD1 HsbColor KEYWORD1
HtmlColor KEYWORD1 HtmlColor KEYWORD1
@@ -35,16 +36,18 @@ NeoBgrFeature KEYWORD1
NeoRgbw64Feature KEYWORD1 NeoRgbw64Feature KEYWORD1
NeoRgb48Feature KEYWORD1 NeoRgb48Feature KEYWORD1
NeoGrb48Feature KEYWORD1 NeoGrb48Feature KEYWORD1
NeoGrbcwxFeature KEYWORD1
NeoRgbUcs8903Feature KEYWORD1 NeoRgbUcs8903Feature KEYWORD1
NeoRgbwUcs8904Feature KEYWORD1 NeoRgbwUcs8904Feature KEYWORD1
NeoGrb48Ws2816Feature KEYWORD1 NeoGrb48Ws2816Feature KEYWORD1
NeoWrgbTm1814Feature KEYWORD1 NeoWrgbTm1814Feature KEYWORD1
NeoRgbTm1914Feature KEYWORD1 NeoRgbTm1914Feature KEYWORD1
NeoGrbTm1914Feature KEYWORD1 NeoGrbTm1914Feature KEYWORD1
NeoRgbSm16803pbColorFeature KEYWORD1 NeoRgbSm16803pbFeature KEYWORD1
NeoRgbSm16823eColorFeature KEYWORD1 NeoRgbSm16823eFeature KEYWORD1
NeoRgbwSm16804ebColorFeature KEYWORD1 NeoRgbwSm16804ebFeature KEYWORD1
NeoRgbwSm16824eColorFeature KEYWORD1 NeoRgbwSm16824eFeature KEYWORD1
NeoGrbcwxFeature KEYWORD1
DotStarBgrFeature KEYWORD1 DotStarBgrFeature KEYWORD1
DotStarLbgrFeature KEYWORD1 DotStarLbgrFeature KEYWORD1
Lpd6803GrbFeature KEYWORD1 Lpd6803GrbFeature KEYWORD1

View File

@@ -46,9 +46,9 @@ License along with NeoPixel. If not, see
#include "features/NeoRgbwFeature.h" #include "features/NeoRgbwFeature.h"
#include "features/NeoRgbwxxFeature.h" #include "features/NeoRgbwxxFeature.h"
#include "features/NeoGrbcwxFeature.h" #include "features/NeoGrbcwxFeature.h"
#include "features/NeoSm168xxColorFeatures.h" #include "features/NeoSm168xxFeatures.h"
#include "features/NeoTm1814ColorFeatures.h" #include "features/NeoTm1814Features.h"
#include "features/NeoTm1914ColorFeatures.h" #include "features/NeoTm1914Features.h"
typedef NeoRgb48Feature NeoRgbUcs8903Feature; typedef NeoRgb48Feature NeoRgbUcs8903Feature;
typedef NeoRgbw64Feature NeoRgbwUcs8904Feature; typedef NeoRgbw64Feature NeoRgbwUcs8904Feature;

View File

@@ -1,5 +1,5 @@
/*------------------------------------------------------------------------- /*-------------------------------------------------------------------------
NeoSm168xxColorFeatures provides feature classes to describe color order and NeoSm168xxFeatures provides feature classes to describe color order and
color depth for NeoPixelBus template class specific to the SM168xx chips/leds color depth for NeoPixelBus template class specific to the SM168xx chips/leds
Written by Michael C. Miller. Written by Michael C. Miller.
@@ -318,9 +318,9 @@ public:
} }
}; };
typedef NeoRgbSm168x3Elements<NeoSm16803pbSettings> NeoRgbSm16803pbColorFeature; typedef NeoRgbSm168x3Elements<NeoSm16803pbSettings> NeoRgbSm16803pbFeature;
typedef NeoRgbSm168x3Elements<NeoSm16823eSettings> NeoRgbSm16823eColorFeature; typedef NeoRgbSm168x3Elements<NeoSm16823eSettings> NeoRgbSm16823eFeature;
typedef NeoRgbwSm168x4Elements<NeoSm16804ebSettings> NeoRgbwSm16804ebColorFeature; typedef NeoRgbwSm168x4Elements<NeoSm16804ebSettings> NeoRgbwSm16804ebFeature;
typedef NeoRgbwSm168x4Elements<NeoSm16824eSettings> NeoRgbwSm16824eColorFeature; typedef NeoRgbwSm168x4Elements<NeoSm16824eSettings> NeoRgbwSm16824eFeature;

View File

@@ -1,5 +1,5 @@
/*------------------------------------------------------------------------- /*-------------------------------------------------------------------------
NeoTm1814ColorFeatures provides feature classes to describe color order and NeoTm1814Features provides feature classes to describe color order and
color depth for NeoPixelBus template class specific to the TM1814 chip color depth for NeoPixelBus template class specific to the TM1814 chip
Written by Michael C. Miller. Written by Michael C. Miller.

View File

@@ -1,5 +1,5 @@
/*------------------------------------------------------------------------- /*-------------------------------------------------------------------------
NeoTm1914ColorFeatures provides feature classes to describe color order and NeoTm1914Features provides feature classes to describe color order and
color depth for NeoPixelBus template class specific to the TM1914 chip color depth for NeoPixelBus template class specific to the TM1914 chip
Written by Michael C. Miller. Written by Michael C. Miller.