This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <FastLED.h> | |
#define LED_PIN 11 | |
// Information about the LED strip itself | |
#define NUM_LEDS 238 | |
#define CHIPSET WS2811_400 | |
#define COLOR_ORDER GRB | |
#define BRIGHTNESS 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//*************************************************************** | |
// Example of blending from one color to a target color. | |
// Once the target color is reached a new random target color | |
// is picked to blend toward. | |
// | |
// leds[0] always displays the target color. | |
// | |
// Marc Miller, Feb 2017 | |
//*************************************************************** |