summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorEnricoGuccii <partyka.003@proton.me>2026-05-15 14:23:45 +0200
committerEnricoGuccii <partyka.003@proton.me>2026-05-15 14:23:45 +0200
commitd9d8f9758467c6bb2bb08b1dd44b84f1bcdc6a5b (patch)
tree04e05b4d566439bcfc42ad0dc74edb45bccba1e5 /src/main.c
parenta08cc07211cb0ffb569e54eff95825e2b5ebc861 (diff)
setup
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..925a112
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,12 @@
+#include <Arduino.h>
+
+// #include <settings.h>
+//
+void setup() {
+ Serial.begin(115200);
+}
+
+void loop() {
+ Serial.println("hello");
+ delay(1000);
+}