|
| Scheduler (int nTaskListSize=2, int queueSize=2, int nSubscriptionListSize=2) |
|
bool | publish (String topic, String msg="", String originator="") |
|
int | subscribe (int taskID, String topic, T_SUBS subs, String originator="") |
|
bool | unsubscribe (int subscriptionHandle) |
|
int | add (T_TASK task, String name, unsigned long minMicroSecs=100000L, T_PRIO prio=PRIO_NORMAL) |
|
bool | remove (int taskID) |
|
bool | reschedule (int taskID, unsigned long minMicroSecs=100000L, T_PRIO prio=PRIO_NORMAL) |
|
unsigned long | getUptime () |
|
void | singleTaskMode (int _singleTaskID) |
|
void | loop () |
|
muwerk Scheduler Class
Implements a cooperative task scheduler. Tasks are defined as void myTask()
type functions and can be added to the scheduler for execution at fixed intervals. Tasks can communicate with each other via pub/sub messages, using MQTT-style topics for subscription and publishing of messages.
The library header-only.
Make sure to provide the required platform define before including ustd headers.
Minimal scheduler:
#define __ATMEGA__ 1
#include <scheduler.h>
void appLoop();
void someTask() {
}
void setup() {
int tID = sched.
add(appLoop,
"main");
sched.
add(someTask,
"someTask", 50000L);
}
void appLoop() {
}
}
muwerk Scheduler Class
Definition scheduler.h:199
int add(T_TASK task, String name, unsigned long minMicroSecs=100000L, T_PRIO prio=PRIO_NORMAL)
Definition scheduler.h:475
void loop()
Definition scheduler.h:681
Pub/Sub communication between tasks
#define __ESP__ 1
#include "scheduler.h"
void appLoop();
void subMsg(String topic, String msg, String originator) {
if (msg == "on")
digitalWrite(LED_BUILTIN, LOW);
if (msg == "off")
digitalWrite(LED_BUILTIN, HIGH);
}
void pubTask() {
static int s1 = 0;
static unsigned long t1;
if (s1 == 0) {
s1 = 1;
} else {
s1 = 0;
}
t1 = millis();
}
if (t1 == 0)
t1 = millis();
}
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
int tID = sched.
add(appLoop,
"main");
sched.
add(pubTask,
"pubTask", 50000L);
}
void appLoop() {
}
}
bool publish(String topic, String msg="", String originator="")
Definition scheduler.h:367
int subscribe(int taskID, String topic, T_SUBS subs, String originator="")
Definition scheduler.h:395
unsigned long timeDiff(unsigned long first, unsigned long second)
Definition muwerk.h:44