Fix JSON API FX change not sending sync (#283)

Rename duplicate effects (#294)
Add India Standard Time
Fix flash on startup
Fix NTP with lwip2
This commit is contained in:
cschwinne 2019-10-29 01:19:04 +01:00
parent f4a2ffc5d2
commit 4e4773a370

View File

@ -26,6 +26,7 @@ void wledInit()
DEBUG_PRINTLN(ESP.getFreeHeap());
strip.init(EEPROM.read(372),ledCount,EEPROM.read(2204)); //init LEDs quickly
strip.setBrightness(0);
DEBUG_PRINT("LEDs inited. heap usage ~");
DEBUG_PRINTLN(heapPreAlloc - ESP.getFreeHeap());
@ -225,8 +226,7 @@ void initInterfaces() {
udpConnected = notifierUdp.begin(udpPort);
if (udpConnected && udpRgbPort != udpPort) udpRgbConnected = rgbUdp.begin(udpRgbPort);
}
if (ntpEnabled && WLED_CONNECTED)
ntpConnected = ntpUdp.begin(ntpLocalPort);
if (ntpEnabled) ntpConnected = ntpUdp.begin(ntpLocalPort);
initBlynk(blynkApiKey);
initE131();