23 lines
876 B
C++
23 lines
876 B
C++
#include "my_color_palettes.h"
|
|
|
|
__attribute__ ((aligned(4))) extern const TProgmemRGBGradientPalette_byte palette_fire[] FL_PROGMEM = {
|
|
0, 0, 0, 0, //black
|
|
128, 255, 0, 0, //red
|
|
224, 255,255, 0, //bright yellow
|
|
255, 255,255,255 }; //full white
|
|
|
|
__attribute__ ((aligned(4))) extern const TProgmemRGBGradientPalette_byte palette_matrix[] FL_PROGMEM = {
|
|
0, 0, 0, 0, // black
|
|
255, 0,255, 0 }; // green
|
|
|
|
// Gradient palette "purplefly_gp", originally from
|
|
// http://soliton.vm.bytemark.co.uk/pub/cpt-city/rc/tn/purplefly.png.index.html
|
|
// converted for FastLED with gammas (2.6, 2.2, 2.5)
|
|
// Size: 16 bytes of program space.
|
|
|
|
__attribute__ ((aligned(4))) extern const TProgmemRGBGradientPalette_byte palette_purplefly_gp[] FL_PROGMEM = {
|
|
0, 0, 0, 0,
|
|
63, 239, 0,122,
|
|
191, 252,255, 78,
|
|
255, 0, 0, 0};
|