Initial commit

This commit is contained in:
iamlijihu
2025-05-15 18:18:52 +08:00
commit 36ab4e2a08
17 changed files with 1468 additions and 0 deletions

16
src/main.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <Arduino.h>
#include "buffer.h"
void setup() {
Serial.begin(115200);
Serial.dtr(false);
buffer_init();
}
void loop() {
buffer_loop();
// Serial.println("loop() is running");
// delay(1000);
}