Refactor: move buzzer RTTTL strings to class members, tune sounds, add PlatformIO build task

This commit is contained in:
Alco van Neck 2026-02-28 19:52:22 +01:00
parent eeae32b25d
commit 0d8fa629ba
2 changed files with 26 additions and 0 deletions

18
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "PlatformIO Build",
"type": "shell",
"command": "platformio",
"args": [
"run"
],
"isBackground": false,
"problemMatcher": [
"$platformio"
],
"group": "build"
}
]
}