-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtimerManager.h
More file actions
86 lines (68 loc) · 1.35 KB
/
timerManager.h
File metadata and controls
86 lines (68 loc) · 1.35 KB
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
77
78
79
80
81
82
83
84
85
86
/*
timerManager.h - A singleton that holds all the Timer instances. It's used to
update all timers at once
Link - https://github.com/brunocalou/Timer
Created by Bruno Calou Alves, Apr, 2017.
Read LICENSE for more information.
*/
#ifndef TIMERMANAGER_H
#define TIMERMANAGER_H
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#ifndef NULL
#define NULL 0
#endif
#include "timer.h"
class TimerManager {
friend class Timer;
public:
static TimerManager& instance();
/**
Updates all timers
*/
void update();
/*
Starts all timers
*/
void start();
/*
Stops and resets all timers
*/
void stop();
/*
Pauses all timers
*/
void pause();
/*
Resets elapsed time of all timers. If any timer was running, it will continue to do so
*/
void reset();
private:
TimerManager();
TimerManager(TimerManager const &);
void operator=(TimerManager const &);
/**
Adds a timer to the TimerManager
*/
void add(Timer *timer);
/**
Removes a timer from the TimerManager
@return True if the timer was removed, false otherwise
*/
bool remove(Timer *timer);
class TimerNode {
public:
TimerNode(Timer *timer) {
next = NULL;
value = timer;
}
TimerNode *next;
Timer *value;
};
TimerNode *first;
TimerNode *last;
};
#endif //TIMERMANAGER_H