FastLED 3.6.0
Loading...
Searching...
No Matches
color.h
Go to the documentation of this file.
1#ifndef __INC_COLOR_H
2#define __INC_COLOR_H
3
4#include "FastLED.h"
5
6FASTLED_NAMESPACE_BEGIN
7
10
14
16typedef enum {
18 TypicalSMD5050=0xFFB0F0 /* 255, 176, 240 */,
20 TypicalLEDStrip=0xFFB0F0 /* 255, 176, 240 */,
21
24 Typical8mmPixel=0xFFE08C /* 255, 224, 140 */,
26 TypicalPixelString=0xFFE08C /* 255, 224, 140 */,
27
29 UncorrectedColor=0xFFFFFF /* 255, 255, 255 */
30
32
33
47typedef enum {
48 // Black Body Radiators
49 // @{
51 Candle=0xFF9329 /* 1900 K, 255, 147, 41 */,
53 Tungsten40W=0xFFC58F /* 2600 K, 255, 197, 143 */,
55 Tungsten100W=0xFFD6AA /* 2850 K, 255, 214, 170 */,
57 Halogen=0xFFF1E0 /* 3200 K, 255, 241, 224 */,
59 CarbonArc=0xFFFAF4 /* 5200 K, 255, 250, 244 */,
61 HighNoonSun=0xFFFFFB /* 5400 K, 255, 255, 251 */,
63 DirectSunlight=0xFFFFFF /* 6000 K, 255, 255, 255 */,
65 OvercastSky=0xC9E2FF /* 7000 K, 201, 226, 255 */,
67 ClearBlueSky=0x409CFF /* 20000 K, 64, 156, 255 */,
68 // @}
69
70 // Gaseous Light Sources
71 // @{
73 WarmFluorescent=0xFFF4E5 /* 0 K, 255, 244, 229 */,
75 StandardFluorescent=0xF4FFFA /* 0 K, 244, 255, 250 */,
77 CoolWhiteFluorescent=0xD4EBFF /* 0 K, 212, 235, 255 */,
79 FullSpectrumFluorescent=0xFFF4F2 /* 0 K, 255, 244, 242 */,
81 GrowLightFluorescent=0xFFEFF7 /* 0 K, 255, 239, 247 */,
83 BlackLightFluorescent=0xA700FF /* 0 K, 167, 0, 255 */,
85 MercuryVapor=0xD8F7FF /* 0 K, 216, 247, 255 */,
87 SodiumVapor=0xFFD1B2 /* 0 K, 255, 209, 178 */,
89 MetalHalide=0xF2FCFF /* 0 K, 242, 252, 255 */,
91 HighPressureSodium=0xFFB74C /* 0 K, 255, 183, 76 */,
92 // @}
93
95 UncorrectedTemperature=0xFFFFFF /* 255, 255, 255 */
97
98FASTLED_NAMESPACE_END
99
101#endif
central include file for FastLED, defines the CFastLED class/object
ColorTemperature
Color temperature values.
Definition color.h:47
LEDColorCorrection
Color correction starting points.
Definition color.h:16
@ Candle
1900 Kelvin
Definition color.h:51
@ CoolWhiteFluorescent
Cool white (bluer) flourescent light bulbs.
Definition color.h:77
@ Tungsten100W
2850 Kelvin
Definition color.h:55
@ HighPressureSodium
High-pressure sodium light bulbs.
Definition color.h:91
@ FullSpectrumFluorescent
Full spectrum flourescent light bulbs.
Definition color.h:79
@ DirectSunlight
6000 Kelvin
Definition color.h:63
@ Tungsten40W
2600 Kelvin
Definition color.h:53
@ SodiumVapor
Sodium vapor light bulbs.
Definition color.h:87
@ WarmFluorescent
Warm (yellower) flourescent light bulbs.
Definition color.h:73
@ BlackLightFluorescent
Black light flourescent light bulbs.
Definition color.h:83
@ CarbonArc
5200 Kelvin
Definition color.h:59
@ StandardFluorescent
Standard flourescent light bulbs.
Definition color.h:75
@ HighNoonSun
5400 Kelvin
Definition color.h:61
@ ClearBlueSky
20000 Kelvin
Definition color.h:67
@ MetalHalide
Metal-halide light bulbs.
Definition color.h:89
@ OvercastSky
7000 Kelvin
Definition color.h:65
@ UncorrectedTemperature
Uncorrected temperature (0xFFFFFF)
Definition color.h:95
@ Halogen
3200 Kelvin
Definition color.h:57
@ GrowLightFluorescent
Grow light flourescent light bulbs.
Definition color.h:81
@ MercuryVapor
Mercury vapor light bulbs.
Definition color.h:85
@ TypicalPixelString
Typical values for 8 mm "pixels on a string".
Definition color.h:26
@ TypicalLEDStrip
Typical values for SMD5050 LEDs.
Definition color.h:20
@ TypicalSMD5050
Typical values for SMD5050 LEDs.
Definition color.h:18
@ Typical8mmPixel
Typical values for 8 mm "pixels on a string".
Definition color.h:24
@ UncorrectedColor
Uncorrected color (0xFFFFFF)
Definition color.h:29