Websocket sources working
This commit is contained in:
parent
c2226f73e0
commit
562348b5ea
28 changed files with 32411 additions and 6 deletions
11
src/main.cpp
11
src/main.cpp
|
@ -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));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue