2023-11-06 19:16:07 +00:00
|
|
|
#include "Arduino.h"
|
2023-11-07 00:11:12 +00:00
|
|
|
#include "lib/config.hpp"
|
|
|
|
|
2023-11-06 19:16:07 +00:00
|
|
|
extern "C" void app_main()
|
|
|
|
{
|
|
|
|
initArduino();
|
|
|
|
|
|
|
|
Serial.begin(115200);
|
2023-11-07 20:26:15 +00:00
|
|
|
setup();
|
2023-11-06 19:16:07 +00:00
|
|
|
|
2023-11-07 00:11:12 +00:00
|
|
|
while (true)
|
|
|
|
{
|
2023-11-08 14:27:22 +00:00
|
|
|
eventSourceLoop();
|
|
|
|
vTaskDelay(pdMS_TO_TICKS(2500));
|
2023-11-07 00:11:12 +00:00
|
|
|
}
|
2023-11-06 19:16:07 +00:00
|
|
|
}
|