Skip to main content
1 vote

Tasks in ESP32: guidelines rather than blink example

in a real time application, more data is needed which I can't find a guide for it That is because there isn't one. The amount of memory needed is completely defined by the application and the task ...
Majenko's user avatar
  • 106k
1 vote

using RTOS SDK - crashes when adding another task

I didn't have the task as an infinite loop. It should be: static void test_task(void *pvParameters) { while(1) { vTaskDelay(MYDELAY6); ESP_LOGI(TAG, "test 123"); ...
SpaceCowboy's user avatar
1 vote

Scheduler comparison for Arduino Uno

I have just tested vbextreme/Scheduler and Arduino-Scheduler using the following code: #include <Scheduler.h> void setup() { pinMode(3, OUTPUT); Scheduler.startLoop(loop2); } void loop() {...
Dmitry Grigoryev's user avatar
1 vote
Accepted

Run method every hour

An Arduino Uno doesn't have a Real Time Clock, but you could contact a NTP time server on the internet using the WiFi shield you mention, and get the time from there, and then keep track of time using ...
ocrdu's user avatar
  • 1,795

Only top scored, non community-wiki answers of a minimum length are eligible