sync: initial commit

This commit is contained in:
2026-06-08 22:36:21 +02:00
commit 9b272b93e8
9 changed files with 486 additions and 0 deletions

7
.zed/settings.json Normal file
View 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
View 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"
}
]