-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtasks.json
More file actions
30 lines (30 loc) · 805 Bytes
/
tasks.json
File metadata and controls
30 lines (30 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"version": "2.0.0",
"tasks": [
{
"label": "Arduino: Compile and Upload",
"type": "shell",
"command": "arduino-cli",
"args": [
"compile",
"--upload",
"--fqbn",
"arduino:zephyr:unoq",
"${workspaceFolder}/sketch/sketch.ino"
],
"options": {
"cwd": "${workspaceFolder}/sketch"
},
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
}
]
}