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:
authorMark Kriegsman <kriegsman@tr.org>2014-04-17 23:41:58 +0400
committerMark Kriegsman <kriegsman@tr.org>2014-04-17 23:41:58 +0400
commit0ccf71703c1d09bfeb8dfa0fd1ac3f2bf05e9fc6 (patch)
tree5e30e9c8c1b0d26e64db7436cb7aeb7f3eedc290 /color.h
parenta1f7644b2810dfc60b67e656fd33fded6d7604d2 (diff)
Changing names to TypicalFoo
Diffstat (limited to 'color.h')
-rw-r--r--color.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/color.h b/color.h
index 1b40cec5..17d1b20a 100644
--- a/color.h
+++ b/color.h
@@ -7,14 +7,17 @@ typedef enum {
// Color correction starting points
// typical values for SMD5050 LEDs
- SMD5050=0xFFA0F0 /* 255, 160, 240 */,
-
- // typical values for 8.25mm "pixels on a string"
- // also for many through-hole T3 package LEDs
- Pixel8MM=0xFFE08C /* 255, 224, 140 */,
-
+ TypicalSMD5050=0xFFB0F0 /* 255, 176, 240 */,
+ TypicalLEDStrip=0xFFB0F0 /* 255, 176, 240 */,
+
+ // typical values for 8mm "pixels on a string"
+ // also for many through-hole 'T' package LEDs
+ Typical8mmPixel=0xFFE08C /* 255, 224, 140 */,
+ TypicalPixelString=0xFFE08C /* 255, 224, 140 */,
+
// uncorrected color
UncorrectedColor=0xFFFFFF
+
} LEDColorCorrection;