diff --git a/platformio.ini b/platformio.ini index b60bef3ce..cb5f4a84d 100644 --- a/platformio.ini +++ b/platformio.ini @@ -31,7 +31,7 @@ lib_deps_external = FastLED@3.3.2 NeoPixelBus@2.5.1 ESPAsyncTCP@1.2.0 - ESPAsyncUDP@1.1.0 + ESPAsyncUDP AsyncTCP@1.0.3 Esp Async WebServer@1.2.0 #ArduinoJson@5.13.5 @@ -161,4 +161,5 @@ build_flags = lib_deps = ${common.lib_deps_external} lib_ignore = - IRremoteESP8266 \ No newline at end of file + IRremoteESP8266 + ESPAsyncUDP \ No newline at end of file diff --git a/wled00/src/dependencies/time/Time.h b/wled00/src/dependencies/time/Time.h deleted file mode 100644 index a79b0801e..000000000 --- a/wled00/src/dependencies/time/Time.h +++ /dev/null @@ -1 +0,0 @@ -#include "TimeLib.h" diff --git a/wled00/src/dependencies/timezone/Timezone.cpp b/wled00/src/dependencies/timezone/Timezone.cpp index a7ff97df2..1606fd8fc 100644 --- a/wled00/src/dependencies/timezone/Timezone.cpp +++ b/wled00/src/dependencies/timezone/Timezone.cpp @@ -12,7 +12,7 @@ #include "Timezone.h" //THIS LINE WAS ADDED FOR COMPATIBILY WITH THE WLED DEPENDENCY STRUCTURE. REMOVE IF YOU USE IT OUTSIDE OF WLED! -#include "../time/Time.h" +#include "../time/TimeLib.h" #ifdef __AVR__ #include diff --git a/wled00/src/dependencies/timezone/Timezone.h b/wled00/src/dependencies/timezone/Timezone.h index 5c8d574a7..0fda888bc 100644 --- a/wled00/src/dependencies/timezone/Timezone.h +++ b/wled00/src/dependencies/timezone/Timezone.h @@ -17,7 +17,7 @@ #include #endif -#include "../time/Time.h" //http://www.arduino.cc/playground/Code/Time +#include "../time/TimeLib.h" //http://www.arduino.cc/playground/Code/Time //convenient constants for dstRules enum week_t {Last, First, Second, Third, Fourth}; diff --git a/wled00/wled00.ino b/wled00/wled00.ino index b44a49003..67f0e5eb0 100644 --- a/wled00/wled00.ino +++ b/wled00/wled00.ino @@ -3,7 +3,7 @@ */ /* * @title WLED project sketch - * @version 0.8.6 + * @version 0.8.7-dev * @author Christian Schwinne */ @@ -55,7 +55,6 @@ #include #endif #include -#include "src/dependencies/time/Time.h" #include "src/dependencies/time/TimeLib.h" #include "src/dependencies/timezone/Timezone.h" #ifndef WLED_DISABLE_ALEXA @@ -100,7 +99,7 @@ //version code in format yymmddb (b = daily build) -#define VERSION 1911181 +#define VERSION 1911201 char versionString[] = "0.8.7-dev";