Files

19 lines
294 B
C++
Raw Permalink Normal View History

2022-05-05 17:51:42 +02:00
#include <esp_log.h>
#include <tickchrono.h>
using namespace std::chrono_literals;
namespace {
constexpr const char TAG[] = "MAIN";
} // namespace
extern "C" void app_main()
{
while (true)
{
ESP_LOGI(TAG, "still up and running");
espcpputils::delay(1000ms);
}
}