- WLED 0.8.0
+ WLED 0.8.1
+
)=====";
//head1 (css)
@@ -133,7 +133,7 @@ Set secondary color to
or
FastLED Palette
-
diff --git a/wled00/palettes.h b/wled00/palettes.h
index 00d328230..881acd08f 100644
--- a/wled00/palettes.h
+++ b/wled00/palettes.h
@@ -515,7 +515,27 @@ DEFINE_GRADIENT_PALETTE( Tiamat_gp ) {
240, 193,213,253, //gc from 203,239,253
255, 255,249,255};
+//Custom palette by Aircoookie
+DEFINE_GRADIENT_PALETTE( April_Night_gp ) {
+ 0, 1, 5, 45, //deep blue
+ 10, 1, 5, 45,
+ 25, 5,169,175, //light blue
+ 40, 1, 5, 45,
+ 61, 1, 5, 45,
+ 76, 45,175, 31, //green
+ 91, 1, 5, 45,
+ 112, 1, 5, 45,
+ 127, 249,150, 5, //yellow
+ 143, 1, 5, 45,
+ 162, 1, 5, 45,
+ 178, 255,92, 0, //pastel orange
+ 193, 1, 5, 45,
+ 214, 1, 5, 45,
+ 229, 223, 45, 72, //pink
+ 244, 1, 5, 45,
+ 255, 1, 5, 45};
+
// Single array of defined cpt-city color palettes.
// This will let us programmatically choose one based on
@@ -560,8 +580,9 @@ const TProgmemRGBGradientPalettePtr gGradientPalettes[] = {
BlacK_Red_Magenta_Yellow_gp, //42-29 Yelmag
Blue_Cyan_Yellow_gp, //43-30 Yelblu
Orange_Teal_gp, //44-31 Orange & Teal
- Tiamat_gp //45-32 Tiamat
- };
+ Tiamat_gp, //45-32 Tiamat
+ April_Night_gp //46-33 April Night
+};
// Count of how many cpt-city gradients are defined:
diff --git a/wled00/wled00.ino b/wled00/wled00.ino
index 878d907da..c27ee7034 100644
--- a/wled00/wled00.ino
+++ b/wled00/wled00.ino
@@ -7,11 +7,24 @@
* @author Christian Schwinne
*/
-//ESP8266-01 got too little storage space to work with all features of WLED. To use it, you must use ESP8266 Arduino Core v2.3.0 and the setting 512K(64K SPIFFS).
-//Uncomment the following line to disable some features (currently Mobile UI, welcome page and single digit + cronixie overlays) to compile for ESP8266-01
-//#define WLED_FLASH_512K_MODE
-//CURRENTLY NOT WORKING
+//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.3.0 and the setting 512K(64K SPIFFS).
+
+//ESP8266-01 (black) has 1MB flash and can thus fit the whole program. Use 1M(64K SPIFFS).
+//If you want the OTA update function though, you need to make sure the sketch is smaller than 479kB.
+
+//Uncomment the following lines to disable some features to compile for ESP8266-01 (max flash size 438kB):
+
+//#define WLED_DISABLE_ALEXA
+//#define WLED_DISABLE_BLYNK
+//#define WLED_DISABLE_CRONIXIE
+//#define WLED_DISABLE_HUESYNC
+//#define WLED_DISABLE_MOBILE_UI
+//#define WLED_DISABLE_OTA
+
+
+//to toggle usb serial debug (un)comment following line(s)
+//#define DEBUG
//library inclusions
#include
@@ -45,7 +58,7 @@
//version code in format yymmddb (b = daily build)
-#define VERSION 1810241
+#define VERSION 1810251
char versionString[] = "0.8.1";
@@ -54,10 +67,6 @@ char apPass[65] = "wled1234";
char otaPass[33] = "wledota";
-//to toggle usb serial debug (un)comment following line(s)
-//#define DEBUG
-
-
//spiffs FS only useful for debug (only ESP8266)
//#define USEFS
diff --git a/wled00/wled05_init.ino b/wled00/wled05_init.ino
index 3eb96c37a..4ccc765a1 100644
--- a/wled00/wled05_init.ino
+++ b/wled00/wled05_init.ino
@@ -138,6 +138,7 @@ void initStrip()
if (bootPreset>0) applyPreset(bootPreset, turnOnAtBoot, true, true);
colorUpdated(0);
if(digitalRead(buttonPin) == LOW) buttonEnabled = false; //disable button if it is "pressed" unintentionally
+
}
void initAP(){
@@ -255,6 +256,3 @@ bool checkClientIsMobile(String useragent)
if (useragent.indexOf("iPod") >= 0) return true;
return false;
}
-
-
-