-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDelayRun.h
76 lines (62 loc) · 2.64 KB
/
DelayRun.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* File: DelayRun.h
* Description:
* SoftTimer library is a lightweight but effective event based timeshare solution for Arduino.
*
* Author: Balazs Kelemen
* Contact: [email protected]
* Copyright: 2012 Balazs Kelemen
* Copying permission statement:
This file is part of SoftTimer.
SoftTimer is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DELAYRUN_H
#define DELAYRUN_H
#include <SoftTimer.h>
#include <Task.h>
#include <Arduino.h>
/**
* Run a callback after a specified delay. The task will stop when finished. Also chains tasks.
*/
class DelayRun : public Task
{
public:
/**
* Setup a delayed task.
* delayMs - The callback will be launched after this amount of milliseconds was passed.
* A value zero (0) may also have sense, when you only want to chain tasks.
* Do not add values greater then 4,294,967, which is about 71 minutes!
* callback - The function to call after the specified time-span. Optional, may be NULL.
* The return value of the callback controls behavior of the "followedBy" option.
* followedBy - If the followedBy was specified, than it will be started when this was finished.
* Starting the followedBy can be denied by returning FALSE in the callback.
*/
DelayRun(unsigned long delayMs, boolean (*callback)(Task* task), DelayRun* followedBy = NULL);
/**
* Register the task, and start waiting for the delayMs to pass.
* If you need to prevent the task to start, you need to remove it from the
* Timer Manager (with the SoftTimer.remove() function).
*/
void startDelayed();
/**
* The time to sleep the task before launching the callback.
* Do not set values greater then 4,294,967, which is about 71 minutes!
*/
unsigned long delayMs;
/** The task should be started after this one was finished. */
DelayRun* followedBy;
private:
boolean (*_callback)(Task* task);
static void step(Task* me);
byte _state;
};
#endif