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:
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;