FastLED 3.7.8
Loading...
Searching...
No Matches
ColorTemperature.ino
Go to the documentation of this file.
1
4
5#include <FastLED.h>
6
7#define LED_PIN 3
8
9// Information about the LED strip itself
10#define NUM_LEDS 60
11#define CHIPSET WS2811
12#define COLOR_ORDER GRB
13CRGB leds[NUM_LEDS];
14
15#define BRIGHTNESS 128
16
17
18// FastLED provides two color-management controls:
19// (1) color correction settings for each LED strip, and
20// (2) master control of the overall output 'color temperature'
21//
22// THIS EXAMPLE demonstrates the second, "color temperature" control.
23// It shows a simple rainbow animation first with one temperature profile,
24// and a few seconds later, with a different temperature profile.
25//
26// The first pixel of the strip will show the color temperature.
27//
28// HELPFUL HINTS for "seeing" the effect in this demo:
29// * Don't look directly at the LED pixels. Shine the LEDs aganst
30// a white wall, table, or piece of paper, and look at the reflected light.
31//
32// * If you watch it for a bit, and then walk away, and then come back
33// to it, you'll probably be able to "see" whether it's currently using
34// the 'redder' or the 'bluer' temperature profile, even not counting
35// the lowest 'indicator' pixel.
36//
37//
38// FastLED provides these pre-conigured incandescent color profiles:
39// Candle, Tungsten40W, Tungsten100W, Halogen, CarbonArc,
40// HighNoonSun, DirectSunlight, OvercastSky, ClearBlueSky,
41// FastLED provides these pre-configured gaseous-light color profiles:
42// WarmFluorescent, StandardFluorescent, CoolWhiteFluorescent,
43// FullSpectrumFluorescent, GrowLightFluorescent, BlackLightFluorescent,
44// MercuryVapor, SodiumVapor, MetalHalide, HighPressureSodium,
45// FastLED also provides an "Uncorrected temperature" profile
46// UncorrectedTemperature;
47
48#define TEMPERATURE_1 Tungsten100W
49#define TEMPERATURE_2 OvercastSky
50
51// How many seconds to show each temperature before switching
52#define DISPLAYTIME 20
53// How many seconds to show black between switches
54#define BLACKTIME 3
55
56void loop()
57{
58 // draw a generic, no-name rainbow
59 static uint8_t starthue = 0;
60 fill_rainbow( leds + 5, NUM_LEDS - 5, --starthue, 20);
61
62 // Choose which 'color temperature' profile to enable.
63 uint8_t secs = (millis() / 1000) % (DISPLAYTIME * 2);
64 if( secs < DISPLAYTIME) {
65 FastLED.setTemperature( TEMPERATURE_1 ); // first temperature
66 leds[0] = TEMPERATURE_1; // show indicator pixel
67 } else {
68 FastLED.setTemperature( TEMPERATURE_2 ); // second temperature
69 leds[0] = TEMPERATURE_2; // show indicator pixel
70 }
71
72 // Black out the LEDs for a few secnds between color changes
73 // to let the eyes and brains adjust
74 if( (secs % DISPLAYTIME) < BLACKTIME) {
75 memset8( leds, 0, NUM_LEDS * sizeof(CRGB));
76 }
77
78 FastLED.show();
79 FastLED.delay(8);
80}
81
82void setup() {
83 delay( 3000 ); // power-up safety delay
84 // It's important to set the color correction for your LED strip here,
85 // so that colors can be more accurately rendered through the 'temperature' profiles
86 FastLED.addLeds<CHIPSET, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS).setCorrection( TypicalSMD5050 );
87 FastLED.setBrightness( BRIGHTNESS );
88}
89
CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:21
central include file for FastLED, defines the CFastLED class/object
void setTemperature(const struct CRGB &temp)
Set a global color temperature.
Definition FastLED.cpp:168
void delay(unsigned long ms)
Delay for the given number of milliseconds.
Definition FastLED.cpp:154
void setBrightness(uint8_t scale)
Set the global brightness scaling.
Definition FastLED.h:715
void show(uint8_t scale)
Update all our controllers with the current led colors, using the passed in brightness.
Definition FastLED.cpp:59
static CLEDController & addLeds(CLEDController *pLed, struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset=0)
Add a CLEDController instance to the world.
Definition FastLED.cpp:47
@ TypicalSMD5050
Typical values for SMD5050 LEDs.
Definition color.h:18
void fill_rainbow(struct CRGB *targetArray, int numToFill, uint8_t initialhue, uint8_t deltahue)
Fill a range of LEDs with a rainbow of colors.
void * memset8(void *ptr, uint8_t value, uint16_t num)
Faster alternative to memset() on AVR.
Representation of an RGB pixel (Red, Green, Blue)
Definition crgb.h:25