21#define MAX_POWER_MILLIAMPS 500
22#define LED_TYPE WS2812B
23#define COLOR_ORDER GRB
28void pacifica_one_layer( fl::CRGBPalette16& p, uint16_t cistart, uint16_t wavescale, uint8_t bri, uint16_t ioff);
79 { 0x000507, 0x000409, 0x00030B, 0x00030D, 0x000210, 0x000212, 0x000114, 0x000117,
80 0x000019, 0x00001C, 0x000026, 0x000031, 0x00003B, 0x000046, 0x14554B, 0x28AA50 };
82 { 0x000507, 0x000409, 0x00030B, 0x00030D, 0x000210, 0x000212, 0x000114, 0x000117,
83 0x000019, 0x00001C, 0x000026, 0x000031, 0x00003B, 0x000046, 0x0C5F52, 0x19BE5F };
85 { 0x000208, 0x00030E, 0x000514, 0x00061A, 0x000820, 0x000927, 0x000B2D, 0x000C33,
86 0x000E39, 0x001040, 0x001450, 0x001860, 0x001C70, 0x002080, 0x1040BF, 0x2060FF };
94 static uint16_t sCIStart1, sCIStart2, sCIStart3, sCIStart4;
95 static uint32_t sLastms = 0;
97 uint32_t deltams = ms - sLastms;
99 uint16_t speedfactor1 =
beatsin16(3, 179, 269);
100 uint16_t speedfactor2 =
beatsin16(4, 179, 269);
101 uint32_t deltams1 = (deltams * speedfactor1) / 256;
102 uint32_t deltams2 = (deltams * speedfactor2) / 256;
103 uint32_t deltams21 = (deltams1 + deltams2) / 2;
104 sCIStart1 += (deltams1 *
beatsin88(1011,10,13));
105 sCIStart2 -= (deltams21 *
beatsin88(777,8,11));
106 sCIStart3 -= (deltams1 *
beatsin88(501,5,7));
107 sCIStart4 -= (deltams2 *
beatsin88(257,4,6));
126void pacifica_one_layer( fl::CRGBPalette16& p, uint16_t cistart, uint16_t wavescale, uint8_t bri, uint16_t ioff)
128 uint16_t ci = cistart;
129 uint16_t waveangle = ioff;
130 uint16_t wavescale_half = (wavescale / 2) + 20;
131 for( uint16_t i = 0; i <
NUM_LEDS; i++) {
133 uint16_t s16 = sin16( waveangle ) + 32768;
134 uint16_t cs = scale16( s16 , wavescale_half ) + wavescale_half;
136 uint16_t sindex16 = sin16( ci) + 32768;
137 uint8_t sindex8 = scale16( sindex16, 240);
146 uint8_t basethreshold =
beatsin8( 9, 55, 65);
147 uint8_t wave =
beat8( 7 );
149 for( uint16_t i = 0; i <
NUM_LEDS; i++) {
150 uint8_t threshold = scale8( sin8( wave), 20) + basethreshold;
152 uint8_t l =
leds[i].getAverageLight();
154 uint8_t overage = l - threshold;
155 uint8_t overage2 = qadd8( overage, overage);
156 leds[i] +=
fl::CRGB( overage, overage2, qadd8( overage2, overage2));
164 for( uint16_t i = 0; i <
NUM_LEDS; i++) {
165 leds[i].blue = scale8(
leds[i].blue, 145);
166 leds[i].green= scale8(
leds[i].green, 200);
FL_DISABLE_WARNING_PUSH FL_DISABLE_WARNING_GLOBAL_CONSTRUCTORS CFastLED FastLED
Global LED strip management instance.
#define MAX_POWER_MILLIAMPS
void pacifica_deepen_colors()
void pacifica_add_whitecaps()
void pacifica_one_layer(fl::CRGBPalette16 &p, uint16_t cistart, uint16_t wavescale, uint8_t bri, uint16_t ioff)
fl::CRGBPalette16 pacifica_palette_2
fl::CRGBPalette16 pacifica_palette_3
fl::CRGBPalette16 pacifica_palette_1
CRGB ColorFromPalette(const CRGBPalette16 &pal, fl::u8 index, fl::u8 brightness, TBlendType blendType)
void fill_solid(CRGB *targetArray, int numToFill, const CRGB &color) FL_NOEXCEPT
Fill a range of LEDs with a solid color.
@ TypicalLEDStrip
Typical values for SMD5050 LEDs.
#define GET_MILLIS
The a number of functions need access to a millisecond counter in order to keep time.
#define EVERY_N_MILLISECONDS(N)
Alias for EVERY_N_MILLIS.
LIB8STATIC u16 beat16(accum88 beats_per_minute, u32 timebase=0) FL_NOEXCEPT
Generates a 16-bit "sawtooth" wave at a given BPM.
LIB8STATIC u16 beatsin88(accum88 beats_per_minute_88, u16 lowest=0, u16 highest=65535, u32 timebase=0, u16 phase_offset=0) FL_NOEXCEPT
Generates a 16-bit sine wave at a given BPM that oscillates within a given range.
LIB8STATIC u8 beatsin8(accum88 beats_per_minute, u8 lowest=0, u8 highest=255, u32 timebase=0, u8 phase_offset=0) FL_NOEXCEPT
Generates an 8-bit sine wave at a given BPM that oscillates within a given range.
LIB8STATIC u8 beat8(accum88 beats_per_minute, u32 timebase=0) FL_NOEXCEPT
Generates an 8-bit "sawtooth" wave at a given BPM.
LIB8STATIC u16 beatsin16(accum88 beats_per_minute, u16 lowest=0, u16 highest=65535, u32 timebase=0, u16 phase_offset=0) FL_NOEXCEPT
Generates a 16-bit sine wave at a given BPM that oscillates within a given range.
Representation of an 8-bit RGB pixel (Red, Green, Blue)