Files
espnow-modem/main/main.cpp
2022-05-05 17:51:42 +02:00

19 lines
294 B
C++

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