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 ...
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");
...
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() {...
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 ...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
task × 9arduino-uno × 4
esp32 × 2
esp8266 × 1
programming × 1
sensors × 1
c++ × 1
i2c × 1
interrupt × 1
arduino-uno-wifi × 1
threads × 1