diff --git a/.gitignore b/.gitignore index 691739c..6e29f8f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ .vscode/c_cpp_properties.json .vscode/launch.json .vscode/ipch +.vscode/settings.json \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json index e24696e..080e70d 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,10 @@ { // See http://go.microsoft.com/fwlink/?LinkId=827846 // for the documentation about the extensions.json format - "recommendations": ["platformio.platformio-ide"], - "unwantedRecommendations": ["ms-vscode.cpptools-extension-pack"] + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] } diff --git a/platformio.ini b/platformio.ini index eec3bd7..a372945 100644 --- a/platformio.ini +++ b/platformio.ini @@ -15,4 +15,4 @@ framework = arduino lib_deps = hideakitai/ArtNet @ ^0.8.0 bblanchon/ArduinoJson @ ^7.2.0 - ESP Async WebServer + me-no-dev/ESP Async WebServer diff --git a/src/main.cpp b/src/main.cpp index bd63954..e8095ef 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -79,7 +79,7 @@ void setup() if (request->url() == "/config" && request->method() == HTTP_PUT) { onPutConfig(request, data, len, index, total); } }); - + delay(1000); server.begin(); Serial.println("Server started!"); @@ -88,4 +88,4 @@ void setup() void loop() { artnet.parse(); // check if artnet packet has come and execute callback -} \ No newline at end of file +}