WouoUI/esp32UI/UI/.vscode/tasks.json
qq283938350 13e7a0a027 ArduinoUi
用按键控制的UI
2023-08-05 18:18:30 +08:00

79 lines
1.4 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "haas-studio: Config",
"type": "shell",
"command": "aos",
"args": [
"make",
"@haaseduk1",
"-c",
"config"
],
"presentation": {
"focus": true
}
},
{
"label": "haas-studio: Make",
"type": "shell",
"command": "aos",
"args": [
"make"
],
"presentation": {
"focus": true
}
},
{
"label": "haas-studio: Burn",
"type": "shell",
"command": "aos",
"args": [
"burn"
],
"presentation": {
"focus": true
}
},
{
"label": "haas-studio: Serial Monitor",
"type": "shell",
"command": "aos",
"args": [
"monitor",
"",
"1500000"
],
"presentation": {
"focus": true,
"panel": "dedicated"
}
},
{
"label": "haas-studio: Clean",
"type": "shell",
"command": "aos",
"args": [
"make",
"clean"
],
"presentation": {
"focus": true
}
},
{
"label": "dummy_aos3.3.0",
"command": "pwd"
}
],
"windows": {
"options": {
"env": {
"PATH": "C:\\ProgramData\\aos\\miniconda3;C:\\ProgramData\\aos\\miniconda3\\Scripts;C:\\ProgramData\\aos\\miniconda3\\Library\\bin;${env:PATH}"
}
}
}
}