mirror of
https://github.com/wled/WLED.git
synced 2025-07-25 11:46:34 +00:00
Re added old C9 palette
This commit is contained in:
parent
afe75f8a89
commit
aa27b85538
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
### Development versions after the 0.10.2 release
|
### Development versions after the 0.10.2 release
|
||||||
|
|
||||||
|
#### Build 2011010
|
||||||
|
|
||||||
|
- Re-added previous C9 palette
|
||||||
|
- Renamed new C9 palette
|
||||||
|
|
||||||
#### Build 2010290
|
#### Build 2010290
|
||||||
|
|
||||||
- Colorful effect now supports palettes
|
- Colorful effect now supports palettes
|
||||||
|
@ -729,7 +729,7 @@ const char JSON_palette_names[] PROGMEM = R"=====([
|
|||||||
"Pastel","Sunset 2","Beech","Vintage","Departure","Landscape","Beach","Sherbet","Hult","Hult 64",
|
"Pastel","Sunset 2","Beech","Vintage","Departure","Landscape","Beach","Sherbet","Hult","Hult 64",
|
||||||
"Drywet","Jul","Grintage","Rewhi","Tertiary","Fire","Icefire","Cyane","Light Pink","Autumn",
|
"Drywet","Jul","Grintage","Rewhi","Tertiary","Fire","Icefire","Cyane","Light Pink","Autumn",
|
||||||
"Magenta","Magred","Yelmag","Yelblu","Orange & Teal","Tiamat","April Night","Orangery","C9","Sakura",
|
"Magenta","Magred","Yelmag","Yelblu","Orange & Teal","Tiamat","April Night","Orangery","C9","Sakura",
|
||||||
"Aurora","Atlantica","C9 2"
|
"Aurora","Atlantica","C9 2","C9 New"
|
||||||
])=====";
|
])=====";
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#ifndef PalettesWLED_h
|
#ifndef PalettesWLED_h
|
||||||
#define PalettesWLED_h
|
#define PalettesWLED_h
|
||||||
|
|
||||||
#define GRADIENT_PALETTE_COUNT 40
|
#define GRADIENT_PALETTE_COUNT 41
|
||||||
|
|
||||||
const byte ib_jul01_gp[] PROGMEM = {
|
const byte ib_jul01_gp[] PROGMEM = {
|
||||||
0, 194, 1, 1,
|
0, 194, 1, 1,
|
||||||
@ -551,14 +551,14 @@ const byte Orangery_gp[] PROGMEM = {
|
|||||||
|
|
||||||
//inspired by Mark Kriegsman https://gist.github.com/kriegsman/756ea6dcae8e30845b5a
|
//inspired by Mark Kriegsman https://gist.github.com/kriegsman/756ea6dcae8e30845b5a
|
||||||
const byte C9_gp[] PROGMEM = {
|
const byte C9_gp[] PROGMEM = {
|
||||||
0, 255, 5, 0, //red
|
0, 184, 4, 0, //red
|
||||||
60, 255, 5, 0,
|
60, 184, 4, 0,
|
||||||
60, 196, 57, 2, //amber (start 61?)
|
65, 144, 44, 2, //amber
|
||||||
120, 196, 57, 2,
|
125, 144, 44, 2,
|
||||||
120, 6, 126, 2, //green (start 126?)
|
130, 4, 96, 2, //green
|
||||||
180, 6, 126, 2,
|
190, 4, 96, 2,
|
||||||
180, 4, 30, 114, //blue (start 191?)
|
195, 7, 7, 88, //blue
|
||||||
255, 4, 30, 114};
|
255, 7, 7, 88};
|
||||||
|
|
||||||
const byte Sakura_gp[] PROGMEM = {
|
const byte Sakura_gp[] PROGMEM = {
|
||||||
0, 196, 19, 10,
|
0, 196, 19, 10,
|
||||||
@ -594,6 +594,17 @@ const byte Atlantica_gp[] PROGMEM = {
|
|||||||
180, 196, 57, 2,
|
180, 196, 57, 2,
|
||||||
180, 137, 85, 2, //yellow
|
180, 137, 85, 2, //yellow
|
||||||
255, 137, 85, 2};
|
255, 137, 85, 2};
|
||||||
|
|
||||||
|
//C9, but brighter and with a less purple blue
|
||||||
|
const byte C9_new_gp[] PROGMEM = {
|
||||||
|
0, 255, 5, 0, //red
|
||||||
|
60, 255, 5, 0,
|
||||||
|
60, 196, 57, 2, //amber (start 61?)
|
||||||
|
120, 196, 57, 2,
|
||||||
|
120, 6, 126, 2, //green (start 126?)
|
||||||
|
180, 6, 126, 2,
|
||||||
|
180, 4, 30, 114, //blue (start 191?)
|
||||||
|
255, 4, 30, 114};
|
||||||
|
|
||||||
|
|
||||||
// Single array of defined cpt-city color palettes.
|
// Single array of defined cpt-city color palettes.
|
||||||
@ -640,7 +651,8 @@ const byte* const gGradientPalettes[] PROGMEM = {
|
|||||||
Sakura_gp, //49-36 Sakura
|
Sakura_gp, //49-36 Sakura
|
||||||
Aurora_gp, //50-37 Aurora
|
Aurora_gp, //50-37 Aurora
|
||||||
Atlantica_gp, //51-38 Atlantica
|
Atlantica_gp, //51-38 Atlantica
|
||||||
C9_2_gp //52-39 C9 2
|
C9_2_gp, //52-39 C9 2
|
||||||
|
C9_new_gp //53-40 C9 New
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2010280
|
#define VERSION 2011010
|
||||||
|
|
||||||
// ESP8266-01 (blue) got too little storage space to work with all features of WLED. To use it, you must use ESP8266 Arduino Core v2.4.2 and the setting 512K(No SPIFFS).
|
// ESP8266-01 (blue) got too little storage space to work with all features of WLED. To use it, you must use ESP8266 Arduino Core v2.4.2 and the setting 512K(No SPIFFS).
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user