Websocket sources working

This commit is contained in:
Djuri 2023-11-07 01:11:12 +01:00
parent c2226f73e0
commit 562348b5ea
28 changed files with 32411 additions and 6 deletions

View file

@ -1,9 +1,20 @@
#include "Arduino.h"
#include "lib/config.hpp"
extern "C" void app_main()
{
initArduino();
setup();
Serial.begin(115200);
static char sBuffer[240];
while (true)
{
// Serial.println("-------");
// vTaskGetRunTimeStats((char *)sBuffer);
// Serial.println(sBuffer);
vTaskDelay(pdMS_TO_TICKS(5000));
}
}