Skip to content

Commit

Permalink
feat: Add .vscode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
madskjeldgaard committed Dec 11, 2023
1 parent fc9db68 commit 7675bc4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
// Upload raspberrypi-pico
{
"label": "upload raspberrypi-pico",
"type": "shell",
"command": "pio run -t upload -e raspberrypi-pico",
},
// Build raspberrypi-pico
{
"label": "build raspberrypi-pico",
"type": "shell",
"command": "pio run -e raspberrypi-pico",
},
]
}

0 comments on commit 7675bc4

Please sign in to comment.