From ebb5de07f88a58272a6eca1a0d47aaba9a50fd01 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Mon, 5 Jun 2023 15:38:03 -0700 Subject: [PATCH] cleanup (#712) --- keywords.txt | 11 +++++++---- src/internal/NeoColorFeatures.h | 6 +++--- ...NeoSm168xxColorFeatures.h => NeoSm168xxFeatures.h} | 10 +++++----- .../{NeoTm1814ColorFeatures.h => NeoTm1814Features.h} | 2 +- .../{NeoTm1914ColorFeatures.h => NeoTm1914Features.h} | 2 +- 5 files changed, 17 insertions(+), 14 deletions(-) rename src/internal/features/{NeoSm168xxColorFeatures.h => NeoSm168xxFeatures.h} (98%) rename src/internal/features/{NeoTm1814ColorFeatures.h => NeoTm1814Features.h} (98%) rename src/internal/features/{NeoTm1914ColorFeatures.h => NeoTm1914Features.h} (98%) diff --git a/keywords.txt b/keywords.txt index b38278b..d6362ba 100644 --- a/keywords.txt +++ b/keywords.txt @@ -14,6 +14,7 @@ RgbColor KEYWORD1 Rgb16Color KEYWORD1 Rgb48Color KEYWORD1 Rgbw64Color KEYWORD1 +RgbwwColor KEYWORD1 HslColor KEYWORD1 HsbColor KEYWORD1 HtmlColor KEYWORD1 @@ -35,16 +36,18 @@ NeoBgrFeature KEYWORD1 NeoRgbw64Feature KEYWORD1 NeoRgb48Feature KEYWORD1 NeoGrb48Feature KEYWORD1 +NeoGrbcwxFeature KEYWORD1 NeoRgbUcs8903Feature KEYWORD1 NeoRgbwUcs8904Feature KEYWORD1 NeoGrb48Ws2816Feature KEYWORD1 NeoWrgbTm1814Feature KEYWORD1 NeoRgbTm1914Feature KEYWORD1 NeoGrbTm1914Feature KEYWORD1 -NeoRgbSm16803pbColorFeature KEYWORD1 -NeoRgbSm16823eColorFeature KEYWORD1 -NeoRgbwSm16804ebColorFeature KEYWORD1 -NeoRgbwSm16824eColorFeature KEYWORD1 +NeoRgbSm16803pbFeature KEYWORD1 +NeoRgbSm16823eFeature KEYWORD1 +NeoRgbwSm16804ebFeature KEYWORD1 +NeoRgbwSm16824eFeature KEYWORD1 +NeoGrbcwxFeature KEYWORD1 DotStarBgrFeature KEYWORD1 DotStarLbgrFeature KEYWORD1 Lpd6803GrbFeature KEYWORD1 diff --git a/src/internal/NeoColorFeatures.h b/src/internal/NeoColorFeatures.h index dfa60c8..3437eab 100644 --- a/src/internal/NeoColorFeatures.h +++ b/src/internal/NeoColorFeatures.h @@ -46,9 +46,9 @@ License along with NeoPixel. If not, see #include "features/NeoRgbwFeature.h" #include "features/NeoRgbwxxFeature.h" #include "features/NeoGrbcwxFeature.h" -#include "features/NeoSm168xxColorFeatures.h" -#include "features/NeoTm1814ColorFeatures.h" -#include "features/NeoTm1914ColorFeatures.h" +#include "features/NeoSm168xxFeatures.h" +#include "features/NeoTm1814Features.h" +#include "features/NeoTm1914Features.h" typedef NeoRgb48Feature NeoRgbUcs8903Feature; typedef NeoRgbw64Feature NeoRgbwUcs8904Feature; diff --git a/src/internal/features/NeoSm168xxColorFeatures.h b/src/internal/features/NeoSm168xxFeatures.h similarity index 98% rename from src/internal/features/NeoSm168xxColorFeatures.h rename to src/internal/features/NeoSm168xxFeatures.h index 9fd86eb..67d8eac 100644 --- a/src/internal/features/NeoSm168xxColorFeatures.h +++ b/src/internal/features/NeoSm168xxFeatures.h @@ -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 Written by Michael C. Miller. @@ -318,9 +318,9 @@ public: } }; -typedef NeoRgbSm168x3Elements NeoRgbSm16803pbColorFeature; -typedef NeoRgbSm168x3Elements NeoRgbSm16823eColorFeature; -typedef NeoRgbwSm168x4Elements NeoRgbwSm16804ebColorFeature; -typedef NeoRgbwSm168x4Elements NeoRgbwSm16824eColorFeature; +typedef NeoRgbSm168x3Elements NeoRgbSm16803pbFeature; +typedef NeoRgbSm168x3Elements NeoRgbSm16823eFeature; +typedef NeoRgbwSm168x4Elements NeoRgbwSm16804ebFeature; +typedef NeoRgbwSm168x4Elements NeoRgbwSm16824eFeature; diff --git a/src/internal/features/NeoTm1814ColorFeatures.h b/src/internal/features/NeoTm1814Features.h similarity index 98% rename from src/internal/features/NeoTm1814ColorFeatures.h rename to src/internal/features/NeoTm1814Features.h index b737679..dc9921e 100644 --- a/src/internal/features/NeoTm1814ColorFeatures.h +++ b/src/internal/features/NeoTm1814Features.h @@ -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 Written by Michael C. Miller. diff --git a/src/internal/features/NeoTm1914ColorFeatures.h b/src/internal/features/NeoTm1914Features.h similarity index 98% rename from src/internal/features/NeoTm1914ColorFeatures.h rename to src/internal/features/NeoTm1914Features.h index 92c7d9e..350ca3e 100644 --- a/src/internal/features/NeoTm1914ColorFeatures.h +++ b/src/internal/features/NeoTm1914Features.h @@ -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 Written by Michael C. Miller.