From d9d8f9758467c6bb2bb08b1dd44b84f1bcdc6a5b Mon Sep 17 00:00:00 2001 From: EnricoGuccii Date: Fri, 15 May 2026 14:23:45 +0200 Subject: setup --- src/CMakeLists.txt | 6 ++++++ src/main.c | 12 ++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/CMakeLists.txt create mode 100644 src/main.c (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..483bc0c --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,6 @@ +# This file was automatically generated for projects +# without default 'CMakeLists.txt' file. + +FILE(GLOB_RECURSE app_sources ${CMAKE_SOURCE_DIR}/src/*.*) + +idf_component_register(SRCS ${app_sources}) 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 + +// #include +// +void setup() { + Serial.begin(115200); +} + +void loop() { + Serial.println("hello"); + delay(1000); +} -- cgit v1.2.3