forked from btclock/btclock_v3
15 lines
No EOL
208 B
C++
15 lines
No EOL
208 B
C++
#include "Arduino.h"
|
|
#include "lib/config.hpp"
|
|
|
|
extern "C" void app_main()
|
|
{
|
|
initArduino();
|
|
|
|
Serial.begin(115200);
|
|
setup();
|
|
|
|
while (true)
|
|
{
|
|
vTaskDelay(pdMS_TO_TICKS(5000));
|
|
}
|
|
} |