mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
11 lines
303 B
C++
11 lines
303 B
C++
|
|
#include "PeriodicTasks.h"
|
||
|
|
|
||
|
|
void periodicTasksInit() {
|
||
|
|
//задачи редкого выполнения
|
||
|
|
ts.add(
|
||
|
|
PTASK, 1000 * 30, [&](void*) {
|
||
|
|
SerialPrint(F("i"), F("HEAP"), prettyBytes(ESP.getFreeHeap()));
|
||
|
|
periodicWsSend();
|
||
|
|
},
|
||
|
|
nullptr, true);
|
||
|
|
}
|