FastLED 3.9.15
Loading...
Searching...
No Matches
Pacifica.ino
Go to the documentation of this file.
1
4
5//
6// "Pacifica"
7// Gentle, blue-green ocean waves.
8// December 2019, Mark Kriegsman and Mary Corey March.
9// For Dan.
10//
11
12#define FASTLED_ALLOW_INTERRUPTS 0
13#include <FastLED.h>
15
16#define DATA_PIN 3
17#define NUM_LEDS 60
18#define MAX_POWER_MILLIAMPS 500
19#define LED_TYPE WS2812B
20#define COLOR_ORDER GRB
21
23
24
25void pacifica_one_layer( CRGBPalette16& p, uint16_t cistart, uint16_t wavescale, uint8_t bri, uint16_t ioff);
26void pacifica_loop();
29
30
31
32
34
35void setup() {
36 delay( 3000); // 3 second delay for boot recovery, and a moment of silence
38 .setCorrection( TypicalLEDStrip );
39 FastLED.setMaxPowerInVoltsAndMilliamps( 5, MAX_POWER_MILLIAMPS);
40}
41
42void loop()
43{
46 FastLED.show();
47 }
48}
49
51//
52// The code for this animation is more complicated than other examples, and
53// while it is "ready to run", and documented in general, it is probably not
54// the best starting point for learning. Nevertheless, it does illustrate some
55// useful techniques.
56//
58//
59// In this animation, there are four "layers" of waves of light.
60//
61// Each layer moves independently, and each is scaled separately.
62//
63// All four wave layers are added together on top of each other, and then
64// another filter is applied that adds "whitecaps" of brightness where the
65// waves line up with each other more. Finally, another pass is taken
66// over the led array to 'deepen' (dim) the blues and greens.
67//
68// The speed and scale and motion each layer varies slowly within independent
69// hand-chosen ranges, which is why the code has a lot of low-speed 'beatsin8' functions
70// with a lot of oddly specific numeric ranges.
71//
72// These three custom blue-green color palettes were inspired by the colors found in
73// the waters off the southern coast of California, https://goo.gl/maps/QQgd97jjHesHZVxQ7
74//
75CRGBPalette16 pacifica_palette_1 =
76 { 0x000507, 0x000409, 0x00030B, 0x00030D, 0x000210, 0x000212, 0x000114, 0x000117,
77 0x000019, 0x00001C, 0x000026, 0x000031, 0x00003B, 0x000046, 0x14554B, 0x28AA50 };
78CRGBPalette16 pacifica_palette_2 =
79 { 0x000507, 0x000409, 0x00030B, 0x00030D, 0x000210, 0x000212, 0x000114, 0x000117,
80 0x000019, 0x00001C, 0x000026, 0x000031, 0x00003B, 0x000046, 0x0C5F52, 0x19BE5F };
81CRGBPalette16 pacifica_palette_3 =
82 { 0x000208, 0x00030E, 0x000514, 0x00061A, 0x000820, 0x000927, 0x000B2D, 0x000C33,
83 0x000E39, 0x001040, 0x001450, 0x001860, 0x001C70, 0x002080, 0x1040BF, 0x2060FF };
84
85
86
88{
89 // Increment the four "color index start" counters, one for each wave layer.
90 // Each is incremented at a different speed, and the speeds vary over time.
91 static uint16_t sCIStart1, sCIStart2, sCIStart3, sCIStart4;
92 static uint32_t sLastms = 0;
93 uint32_t ms = GET_MILLIS();
94 uint32_t deltams = ms - sLastms;
95 sLastms = ms;
96 uint16_t speedfactor1 = beatsin16(3, 179, 269);
97 uint16_t speedfactor2 = beatsin16(4, 179, 269);
98 uint32_t deltams1 = (deltams * speedfactor1) / 256;
99 uint32_t deltams2 = (deltams * speedfactor2) / 256;
100 uint32_t deltams21 = (deltams1 + deltams2) / 2;
101 sCIStart1 += (deltams1 * beatsin88(1011,10,13));
102 sCIStart2 -= (deltams21 * beatsin88(777,8,11));
103 sCIStart3 -= (deltams1 * beatsin88(501,5,7));
104 sCIStart4 -= (deltams2 * beatsin88(257,4,6));
105
106 // Clear out the LED array to a dim background blue-green
107 fill_solid( leds, NUM_LEDS, CRGB( 2, 6, 10));
108
109 // Render each of four layers, with different scales and speeds, that vary over time
110 pacifica_one_layer( pacifica_palette_1, sCIStart1, beatsin16( 3, 11 * 256, 14 * 256), beatsin8( 10, 70, 130), 0-beat16( 301) );
111 pacifica_one_layer( pacifica_palette_2, sCIStart2, beatsin16( 4, 6 * 256, 9 * 256), beatsin8( 17, 40, 80), beat16( 401) );
112 pacifica_one_layer( pacifica_palette_3, sCIStart3, 6 * 256, beatsin8( 9, 10,38), 0-beat16(503));
113 pacifica_one_layer( pacifica_palette_3, sCIStart4, 5 * 256, beatsin8( 8, 10,28), beat16(601));
114
115 // Add brighter 'whitecaps' where the waves lines up more
117
118 // Deepen the blues and greens a bit
120}
121
122// Add one layer of waves into the led array
123void pacifica_one_layer( CRGBPalette16& p, uint16_t cistart, uint16_t wavescale, uint8_t bri, uint16_t ioff)
124{
125 uint16_t ci = cistart;
126 uint16_t waveangle = ioff;
127 uint16_t wavescale_half = (wavescale / 2) + 20;
128 for( uint16_t i = 0; i < NUM_LEDS; i++) {
129 waveangle += 250;
130 uint16_t s16 = sin16( waveangle ) + 32768;
131 uint16_t cs = scale16( s16 , wavescale_half ) + wavescale_half;
132 ci += cs;
133 uint16_t sindex16 = sin16( ci) + 32768;
134 uint8_t sindex8 = scale16( sindex16, 240);
135 CRGB c = ColorFromPalette( p, sindex8, bri, LINEARBLEND);
136 leds[i] += c;
137 }
138}
139
140// Add extra 'white' to areas where the four layers of light have lined up brightly
142{
143 uint8_t basethreshold = beatsin8( 9, 55, 65);
144 uint8_t wave = beat8( 7 );
145
146 for( uint16_t i = 0; i < NUM_LEDS; i++) {
147 uint8_t threshold = scale8( sin8( wave), 20) + basethreshold;
148 wave += 7;
149 uint8_t l = leds[i].getAverageLight();
150 if( l > threshold) {
151 uint8_t overage = l - threshold;
152 uint8_t overage2 = qadd8( overage, overage);
153 leds[i] += CRGB( overage, overage2, qadd8( overage2, overage2));
154 }
155 }
156}
157
158// Deepen the blues and greens
160{
161 for( uint16_t i = 0; i < NUM_LEDS; i++) {
162 leds[i].blue = scale8( leds[i].blue, 145);
163 leds[i].green= scale8( leds[i].green, 200);
164 leds[i] |= CRGB( 2, 5, 7);
165 }
166}
CRGB leds[NUM_LEDS]
#define NUM_LEDS
#define DATA_PIN
FL_DISABLE_WARNING_PUSH FL_DISABLE_WARNING_GLOBAL_CONSTRUCTORS CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:74
central include file for FastLED, defines the CFastLED class/object
void pacifica_loop()
Definition Pacifica.ino:87
void pacifica_deepen_colors()
Definition Pacifica.ino:159
void setup()
Definition Pacifica.ino:35
#define MAX_POWER_MILLIAMPS
Definition Pacifica.ino:18
CRGBPalette16 pacifica_palette_1
Definition Pacifica.ino:75
void pacifica_add_whitecaps()
Definition Pacifica.ino:141
void pacifica_one_layer(CRGBPalette16 &p, uint16_t cistart, uint16_t wavescale, uint8_t bri, uint16_t ioff)
Definition Pacifica.ino:123
CRGBPalette16 pacifica_palette_2
Definition Pacifica.ino:78
CRGBPalette16 pacifica_palette_3
Definition Pacifica.ino:81
void loop()
Definition Pacifica.ino:42
#define COLOR_ORDER
Definition advanced.h:42
#define LED_TYPE
Definition advanced.h:41
CRGB ColorFromPalette(const CRGBPalette16 &pal, fl::u8 index, fl::u8 brightness, TBlendType blendType)
void fill_solid(struct CRGB *targetArray, int numToFill, const struct CRGB &color)
Fill a range of LEDs with a solid color.
Definition fill.cpp:9
LIB8STATIC uint8_t beat8(accum88 beats_per_minute, uint32_t timebase=0)
Generates an 8-bit "sawtooth" wave at a given BPM.
Definition lib8tion.h:785
LIB8STATIC uint16_t beatsin16(accum88 beats_per_minute, uint16_t lowest=0, uint16_t highest=65535, uint32_t timebase=0, uint16_t phase_offset=0)
Generates a 16-bit sine wave at a given BPM that oscillates within a given range.
Definition lib8tion.h:819
LIB8STATIC uint16_t beat16(accum88 beats_per_minute, uint32_t timebase=0)
Generates a 16-bit "sawtooth" wave at a given BPM.
Definition lib8tion.h:775
LIB8STATIC uint8_t beatsin8(accum88 beats_per_minute, uint8_t lowest=0, uint8_t highest=255, uint32_t timebase=0, uint8_t phase_offset=0)
Generates an 8-bit sine wave at a given BPM that oscillates within a given range.
Definition lib8tion.h:837
LIB8STATIC uint16_t beatsin88(accum88 beats_per_minute_88, uint16_t lowest=0, uint16_t highest=65535, uint32_t timebase=0, uint16_t phase_offset=0)
Generates a 16-bit sine wave at a given BPM that oscillates within a given range.
Definition lib8tion.h:801
@ TypicalLEDStrip
Typical values for SMD5050 LEDs.
Definition color.h:19
LIB8STATIC_ALWAYS_INLINE uint8_t qadd8(uint8_t i, uint8_t j)
Add one byte to another, saturating at 0xFF.
Definition math8.h:40
LIB8STATIC uint16_t scale16(uint16_t i, fract16 scale)
Scale a 16-bit unsigned value by an 16-bit value, which is treated as the numerator of a fraction who...
Definition scale8.h:551
LIB8STATIC_ALWAYS_INLINE uint8_t scale8(uint8_t i, fract8 scale)
Scale one byte by a second one, which is treated as the numerator of a fraction whose denominator is ...
Definition scale8.h:44
#define GET_MILLIS
The a number of functions need access to a millisecond counter in order to keep time.
Definition lib8tion.h:699
#define EVERY_N_MILLISECONDS(N)
Alias for EVERY_N_MILLIS.
Definition lib8tion.h:1221
#define sin16
Platform-independent alias of the fast sin implementation.
Definition trig8.h:112
#define sin8
Platform-independent alias of the fast sin implementation.
Definition trig8.h:230
#define FASTLED_USING_NAMESPACE
Definition namespace.h:30
Representation of an RGB pixel (Red, Green, Blue)
Definition crgb.h:86