-
-
Save hsiboy/f3caddb81b6c50e56f43 to your computer and use it in GitHub Desktop.
This file contains 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> | |
// Red, White, and Blue stripes with "glitter" flashes | |
// Mark Kriegsman, June 30, 2014 | |
// requires FastLED v2.1 or later | |
#define NUM_LEDS 250 | |
#define LED_PIN 13 | |
#define COLOR_ORDER RGB | |
#define BRIGHTNESS 255 | |
#define LED_TYPE WS2811 | |
CRGB leds[NUM_LEDS]; | |
uint8_t data[ NUM_LEDS]; | |
void setup() { | |
delay(3000); | |
FastLED.addLeds<LED_TYPE,LED_PIN,COLOR_ORDER>(leds,NUM_LEDS).setCorrection(TypicalLEDStrip); | |
FastLED.setBrightness(BRIGHTNESS); | |
} | |
void loop() { | |
fill_data_array(); | |
render_data_with_palette(); | |
add_glitter(); | |
FastLED.show(); | |
FastLED.delay(20); | |
} | |
void fill_data_array() | |
{ | |
static uint8_t startValue = 0; | |
startValue = startValue + 2; | |
uint8_t value = startValue; | |
for( int i = 0; i < NUM_LEDS; i++) { | |
data[i] = triwave8( value); // convert value to an up-and-down wave | |
value += 7; | |
} | |
} | |
CRGBPalette16 gPalette ( | |
CRGB::Black, CRGB::Black, | |
CRGB::Red, CRGB::Red, CRGB::Red, CRGB::Red, | |
CRGB::Gray, CRGB::Gray, CRGB::Gray, CRGB::Gray, | |
CRGB::Blue, CRGB::Blue, CRGB::Blue, CRGB::Blue, | |
CRGB::Black, CRGB::Black | |
); | |
void render_data_with_palette() | |
{ | |
for( int i = 0; i < NUM_LEDS; i++) { | |
leds[i] = ColorFromPalette( gPalette, data[i], 128, BLEND); | |
} | |
} | |
void add_glitter() | |
{ | |
int chance_of_glitter = 5; // percent of the time that we add glitter | |
int number_of_glitters = 3; // number of glitter sparkles to add | |
int r = random8(100); | |
if( r < chance_of_glitter ) { | |
for( int j = 0; j < number_of_glitters; j++) { | |
int pos = random16( NUM_LEDS); | |
leds[pos] = CRGB::White; // very bright glitter | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment