Create ESP32 project

This commit is contained in:
2024-07-16 21:05:20 +02:00
parent 751e33cb72
commit 0e32622720
13 changed files with 4239 additions and 0 deletions

View File

@ -0,0 +1,2 @@
idf_component_register(SRCS "main.c"
INCLUDE_DIRS ".")

9
esp32_device/main/main.c Executable file
View File

@ -0,0 +1,9 @@
#include <stdio.h>
#include "esp_system.h"
void app_main(void)
{
printf("\n\n\nhello world and bye\n\n\n");
fflush(stdout);
esp_restart();
}