diff --git a/.gitignore b/.gitignore index e7ee0a81d..3a575e21a 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..330a1092f --- /dev/null +++ b/.vscode/settings.json @@ -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" + } + ] + } + ] +}