mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2025-07-05 05:38:54 +00:00
Merge branch 'main' into DMX-23-template-string
This commit is contained in:
commit
9b8b88eeb7
4 changed files with 10 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,3 +5,4 @@
|
|||
.vscode/c_cpp_properties.json
|
||||
.vscode/launch.json
|
||||
.vscode/ipch
|
||||
.vscode/settings.json
|
8
.vscode/extensions.json
vendored
8
.vscode/extensions.json
vendored
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue