19 void lazyInit()
override {}
21 const char *fxName(
int)
const override {
return "Pacifica"; }
24 uint16_t sCIStart1 = 0, sCIStart2 = 0, sCIStart3 = 0, sCIStart4 = 0;
27 CRGBPalette16 pacifica_palette_1 = {0x000507, 0x000409, 0x00030B, 0x00030D,
28 0x000210, 0x000212, 0x000114, 0x000117,
29 0x000019, 0x00001C, 0x000026, 0x000031,
30 0x00003B, 0x000046, 0x14554B, 0x28AA50};
31 CRGBPalette16 pacifica_palette_2 = {0x000507, 0x000409, 0x00030B, 0x00030D,
32 0x000210, 0x000212, 0x000114, 0x000117,
33 0x000019, 0x00001C, 0x000026, 0x000031,
34 0x00003B, 0x000046, 0x0C5F52, 0x19BE5F};
35 CRGBPalette16 pacifica_palette_3 = {0x000208, 0x00030E, 0x000514, 0x00061A,
36 0x000820, 0x000927, 0x000B2D, 0x000C33,
37 0x000E39, 0x001040, 0x001450, 0x001860,
38 0x001C70, 0x002080, 0x1040BF, 0x2060FF};
41 uint16_t wavescale, uint8_t bri, uint16_t ioff);
42 void pacifica_add_whitecaps(
CRGB *leds);
43 void pacifica_deepen_colors(
CRGB *leds);
47 CRGB *leds = ctx.leds;
48 uint32_t now = ctx.now;
49 if (leds ==
nullptr || mNumLeds == 0) {
55 uint32_t deltams = ms - sLastms;
57 uint16_t speedfactor1 =
beatsin16(3, 179, 269);
58 uint16_t speedfactor2 =
beatsin16(4, 179, 269);
59 uint32_t deltams1 = (deltams * speedfactor1) / 256;
60 uint32_t deltams2 = (deltams * speedfactor2) / 256;
61 uint32_t deltams21 = (deltams1 + deltams2) / 2;
62 sCIStart1 += (deltams1 *
beatsin88(1011, 10, 13));
63 sCIStart2 -= (deltams21 *
beatsin88(777, 8, 11));
64 sCIStart3 -= (deltams1 *
beatsin88(501, 5, 7));
65 sCIStart4 -= (deltams2 *
beatsin88(257, 4, 6));
72 pacifica_one_layer(leds, pacifica_palette_1, sCIStart1,
75 pacifica_one_layer(leds, pacifica_palette_2, sCIStart2,
78 pacifica_one_layer(leds, pacifica_palette_3, sCIStart3, 6 * 256,
80 pacifica_one_layer(leds, pacifica_palette_3, sCIStart4, 5 * 256,
84 pacifica_add_whitecaps(leds);
87 pacifica_deepen_colors(leds);
92 uint16_t wavescale, uint8_t bri,
94 uint16_t ci = cistart;
95 uint16_t waveangle = ioff;
96 uint16_t wavescale_half = (wavescale / 2) + 20;
97 for (uint16_t i = 0; i < mNumLeds; i++) {
99 uint16_t s16 =
sin16(waveangle) + 32768;
100 uint16_t cs =
scale16(s16, wavescale_half) + wavescale_half;
102 uint16_t sindex16 =
sin16(ci) + 32768;
103 uint8_t sindex8 =
scale16(sindex16, 240);
111void Pacifica::pacifica_add_whitecaps(
CRGB *leds) {
112 uint8_t basethreshold =
beatsin8(9, 55, 65);
113 uint8_t wave =
beat8(7);
115 for (uint16_t i = 0; i < mNumLeds; i++) {
116 uint8_t threshold =
scale8(
sin8(wave), 20) + basethreshold;
120 uint8_t overage = l - threshold;
121 uint8_t overage2 =
qadd8(overage, overage);
122 leds[i] +=
CRGB(overage, overage2,
qadd8(overage2, overage2));
128void Pacifica::pacifica_deepen_colors(
CRGB *leds) {
129 for (uint16_t i = 0; i < mNumLeds; i++) {
132 leds[i] |=
CRGB(2, 5, 7);
central include file for FastLED, defines the CFastLED class/object
RGB color palette with 16 discrete values.
void draw(DrawContext context) override
LIB8STATIC uint8_t beat8(accum88 beats_per_minute, uint32_t timebase=0)
Generates an 8-bit "sawtooth" wave at a given BPM.
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.
LIB8STATIC uint16_t beat16(accum88 beats_per_minute, uint32_t timebase=0)
Generates a 16-bit "sawtooth" wave at a given BPM.
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.
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.
void fill_solid(struct CRGB *targetArray, int numToFill, const struct CRGB &color)
Fill a range of LEDs with a solid color.
LIB8STATIC_ALWAYS_INLINE uint8_t qadd8(uint8_t i, uint8_t j)
Add one byte to another, saturating at 0xFF.
CRGB ColorFromPalette(const CRGBPalette16 &pal, uint8_t index, uint8_t brightness, TBlendType blendType)
Get a color from a palette.
@ LINEARBLEND
Linear interpolation between palette entries, with wrap-around from end to the beginning again.
uint8_t blue
Blue channel value.
FASTLED_FORCE_INLINE uint8_t getAverageLight() const
Get the average of the R, G, and B values.
uint8_t green
Green channel value.
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...
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 ...
#define sin16
Platform-independent alias of the fast sin implementation.
#define sin8
Platform-independent alias of the fast sin implementation.
Representation of an RGB pixel (Red, Green, Blue)