Initial commit

This commit is contained in:
2023-08-06 16:45:16 +02:00
commit 9c0a1c6055
8 changed files with 210 additions and 0 deletions

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

@@ -0,0 +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"
]
}

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

@@ -0,0 +1,30 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Erase,Upload,Monitor",
"type": "shell",
"command": "PioExec=~/.platformio/penv/bin/pio; $PioExec run -t erase -e ${input:TargetPlatform} && $PioExec run -t upload -e ${input:TargetPlatform} && $PioExec run -t monitor -e ${input:TargetPlatform}",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"inputs": [
{
"type": "pickString",
"id": "TargetPlatform",
"description": "Wich platform is used?",
"options": [
"ESP8266",
"ESP32s"
],
"default": "ESP8266"
},
]
}