Restructured code files

This commit is contained in:
erwin
2023-06-29 21:43:32 +02:00
parent 52bd3a6972
commit 4a34a7768c
427 changed files with 43997 additions and 0 deletions

34
code/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,34 @@
// AUTOMATICALLY GENERATED FILE. PLEASE DO NOT MODIFY IT MANUALLY
// PIO Unified Debugger
//
// Documentation: https://docs.platformio.org/page/plus/debugging.html
// Configuration: https://docs.platformio.org/page/projectconf/section_env_debug.html
{
"version": "0.2.0",
"configurations": [
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug",
"executable": "/home/erwin/Projects/Active/wastebin-notifier/.pio/build/d1_mini_pro/firmware.elf",
"projectEnvName": "d1_mini_pro",
"toolchainBinDir": "/home/erwin/.platformio/packages/toolchain-xtensa/bin",
"preLaunchTask": {
"type": "PlatformIO",
"task": "Pre-Debug"
},
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "platformio-debug",
"request": "launch",
"name": "PIO Debug (skip Pre-Debug)",
"executable": "/home/erwin/Projects/Active/wastebin-notifier/.pio/build/d1_mini_pro/firmware.elf",
"projectEnvName": "d1_mini_pro",
"toolchainBinDir": "/home/erwin/.platformio/packages/toolchain-xtensa/bin",
"internalConsoleOptions": "openOnSessionStart"
}
]
}