sync: initial commit
This commit is contained in:
7
.zed/settings.json
Normal file
7
.zed/settings.json
Normal file
@@ -0,0 +1,7 @@
|
||||
// Folder-specific settings
|
||||
//
|
||||
// For a full list of overridable settings, and general information on folder-specific settings,
|
||||
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
|
||||
{
|
||||
"format_on_save": "off"
|
||||
}
|
||||
26
.zed/tasks.json
Normal file
26
.zed/tasks.json
Normal file
@@ -0,0 +1,26 @@
|
||||
[
|
||||
{
|
||||
"label": "Compile Arduino sketch",
|
||||
"command": "arduino-cli",
|
||||
"args": [
|
||||
"compile",
|
||||
"--fqbn",
|
||||
"${ARDUINO_FQBN:arduino:avr:uno}",
|
||||
"."
|
||||
],
|
||||
"save": "all"
|
||||
},
|
||||
{
|
||||
"label": "Upload Arduino sketch",
|
||||
"command": "arduino-cli",
|
||||
"args": [
|
||||
"upload",
|
||||
"--fqbn",
|
||||
"${ARDUINO_FQBN:arduino:avr:uno}",
|
||||
"--port",
|
||||
"${ARDUINO_PORT:/dev/ttyACM0}",
|
||||
"."
|
||||
],
|
||||
"save": "all"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user