initial commit

This commit is contained in:
2026-07-05 10:06:21 +02:00
commit f8ed637759
16 changed files with 1795 additions and 0 deletions

9
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"recommendations": [
"llvm-vs-code-extensions.vscode-clangd"
],
"unwantedRecommendations": [
"platformio.platformio-ide",
"davidgomes.platformio-ide-cursor"
]
}

10
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"files.associations": {
"*.h": "cpp",
"platformio.ini": "ini"
},
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}",
"--header-insertion=never"
],
}

84
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,84 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "PlatformIO: Build",
"type": "shell",
"command": "${env:HOME}/.platformio/penv/bin/pio",
"args": ["run"],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc",
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "PlatformIO: Upload",
"type": "shell",
"command": "${env:HOME}/.platformio/penv/bin/pio",
"args": ["run", "--target", "upload"],
"group": "none",
"problemMatcher": "$gcc",
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "PlatformIO: Monitor",
"type": "shell",
"command": "${env:HOME}/.platformio/penv/bin/pio",
"args": ["device", "monitor"],
"group": "none",
"isBackground": true,
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"label": "PlatformIO: Update IntelliSense DB",
"type": "shell",
"command": "${env:HOME}/.platformio/penv/bin/pio",
"args": ["run", "-t", "compiledb"],
"group": "none",
"problemMatcher": [],
"presentation": {
"reveal": "silent",
"panel": "shared"
}
},
{
"label": "PlatformIO: Clean",
"type": "shell",
"command": "${env:HOME}/.platformio/penv/bin/pio",
"args": ["run", "--target", "clean"],
"group": "none",
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "PlatformIO: Upload and Monitor",
"dependsOn": ["PlatformIO: Upload"],
"dependsOrder": "sequence",
"type": "shell",
"command": "${env:HOME}/.platformio/penv/bin/pio",
"args": ["device", "monitor"],
"group": "none",
"isBackground": true,
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
]
}