11 lines
163 B
C
11 lines
163 B
C
#ifndef TASKS_H
|
|
#define TASKS_H
|
|
#include <Arduino.h>
|
|
#include "SAB.h"
|
|
|
|
boolean task1(void *);
|
|
boolean task2(void *);
|
|
boolean task_blink(void *);
|
|
|
|
#endif //TASKS_H
|