SolarEnergy/esp32_device/main/main.c

10 lines
154 B
C
Executable File

#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();
}