mirror of
https://git.btclock.dev/btclock/btclock_v3
synced 2025-04-22 16:51:23 +00:00
16 lines
235 B
C++
16 lines
235 B
C++
#include "Arduino.h"
|
|
#include "lib/config.hpp"
|
|
|
|
extern "C" void app_main()
|
|
{
|
|
initArduino();
|
|
|
|
Serial.begin(115200);
|
|
setup();
|
|
|
|
while (true)
|
|
{
|
|
eventSourceLoop();
|
|
vTaskDelay(pdMS_TO_TICKS(2500));
|
|
}
|
|
} |