Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Garcia <danielgarcia@gmail.com>2014-04-18 00:06:31 +0400
committerDaniel Garcia <danielgarcia@gmail.com>2014-04-18 00:06:31 +0400
commit2d47cca76e9a693ce23c2097e9ce0b4b1ac067d2 (patch)
treec064e63b9d0ec85589c1ae37797dbc60d21196bb
parente98cfa2061a06c8c9a2d72a2dc953dd5ab770c11 (diff)
parentfb4497bc456866752ec1424b7afb3426e6f042ce (diff)
Merge branch 'FastLED2.1' of https://github.com/FastLED/FastLED into FastLED2.1
-rw-r--r--pixeltypes.h10
-rw-r--r--preview_changes.txt3
2 files changed, 13 insertions, 0 deletions
diff --git a/pixeltypes.h b/pixeltypes.h
index 663c37bd..279b2055 100644
--- a/pixeltypes.h
+++ b/pixeltypes.h
@@ -67,6 +67,16 @@ struct CHSV {
}
};
+typedef enum {
+ HUE_RED = 0,
+ HUE_ORANGE = 32,
+ HUE_YELLOW = 64,
+ HUE_GREEN = 96,
+ HUE_AQUA = 128,
+ HUE_BLUE = 160,
+ HUE_PURPLE = 192,
+ HUE_PINK = 224
+} HSVHue;
struct CRGB {
union {
diff --git a/preview_changes.txt b/preview_changes.txt
index af422871..6955e218 100644
--- a/preview_changes.txt
+++ b/preview_changes.txt
@@ -7,3 +7,6 @@
* P9813 (aka Cool Neon Total Control Lighting support)
* Preliminary TM1829 support (broken, don't use!)
* Random code changes and cleanups
+
+* Added HUE_RED, HUE_ORANGE, etc.
+* Added named color correction profiles (eg. TypicalSMD5050)