package.json and cdata.js: set urls to MoonModules

index.js: add logging (temp) and improve segment view redrawing
wled00.ini: add lps (temp)
wledserver.cpp: show client request done after its done
ws.cpp: show websocket events (temp?)
This commit is contained in:
Ewoud
2023-05-24 11:49:47 +02:00
parent dcebcede32
commit b195596ad7
10 changed files with 1889 additions and 1871 deletions

View File

@@ -364,12 +364,13 @@ void initServer()
});
#endif
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
USER_PRINTLN("Client request"); //WLEDMM: want to see if client connects to wled
USER_PRINT("Client request"); //WLEDMM: want to see if client connects to wled
#ifdef ARDUINO_ARCH_ESP32
DEBUG_PRINTF("%s min free stack %d\n", pcTaskGetTaskName(NULL), uxTaskGetStackHighWaterMark(NULL)); //WLEDMM
#endif
if (captivePortal(request)) return;
serveIndexOrWelcome(request);
USER_PRINTLN(" done"); //WLEDMM: want to see if client connects to wled
});
#ifdef WLED_ENABLE_PIXART