This commit is contained in:
2026-02-27 22:17:33 +01:00
commit 8e95149d8e
27 changed files with 4480 additions and 0 deletions

12
main/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
/*
* ESP32 Tang Server - Main Entry Point
*/
#include "TangServer.h"
extern "C" void app_main(void) {
setup();
while (true) {
loop();
}
}