Merge branch 'development' of https://github.com/arendst/Tasmota into development

This commit is contained in:
Theo Arends 2023-01-07 17:31:23 +01:00
commit 1fb7c13f4c
2 changed files with 50 additions and 0 deletions

1
.gitignore vendored
View File

@ -34,5 +34,6 @@ lib/libesp32/berry/berry
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/settings.json
*.bak
*.code-workspace

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

@ -0,0 +1,49 @@
{
"platformio-ide.toolbar": [
{
"text": "$(trash)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Clean All"
}
]
},
{
"text": "$(check)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Build"
}
]
},
{
"text": "$(zap)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Upload"
}
]
},
{
"text": "$(flame)",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -t erase_upload"
}
]
},
{
"text": "$(device-desktop)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Monitor"
}
]
}
]
}