Merge branch 'main' into DMX-23-template-string

This commit is contained in:
Raffael Wolf 2024-11-02 22:10:54 +01:00 committed by GitHub
commit 9b8b88eeb7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 5 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@
.vscode/c_cpp_properties.json .vscode/c_cpp_properties.json
.vscode/launch.json .vscode/launch.json
.vscode/ipch .vscode/ipch
.vscode/settings.json

View file

@ -1,6 +1,10 @@
{ {
// See http://go.microsoft.com/fwlink/?LinkId=827846 // See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format // for the documentation about the extensions.json format
"recommendations": ["platformio.platformio-ide"], "recommendations": [
"unwantedRecommendations": ["ms-vscode.cpptools-extension-pack"] "platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
} }

View file

@ -15,4 +15,4 @@ framework = arduino
lib_deps = lib_deps =
hideakitai/ArtNet @ ^0.8.0 hideakitai/ArtNet @ ^0.8.0
bblanchon/ArduinoJson @ ^7.2.0 bblanchon/ArduinoJson @ ^7.2.0
ESP Async WebServer me-no-dev/ESP Async WebServer

View file

@ -79,7 +79,7 @@ void setup()
if (request->url() == "/config" && request->method() == HTTP_PUT) { if (request->url() == "/config" && request->method() == HTTP_PUT) {
onPutConfig(request, data, len, index, total); onPutConfig(request, data, len, index, total);
} }); } });
delay(1000); delay(1000);
server.begin(); server.begin();
Serial.println("Server started!"); Serial.println("Server started!");
@ -88,4 +88,4 @@ void setup()
void loop() void loop()
{ {
artnet.parse(); // check if artnet packet has come and execute callback artnet.parse(); // check if artnet packet has come and execute callback
} }