-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathInnuTicker.cpp
126 lines (109 loc) · 1.84 KB
/
InnuTicker.cpp
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#include "InnuTicker.h"
InnuTicker::InnuTicker() {} // Konstruktor
InnuTicker::InnuTicker(fptr callback, uint32_t timer, uint32_t repeat) // Konstruktor
{
this->timer = timer;
this->repeat = repeat;
this->callback = callback;
enabled = false;
lastTime = 0;
counts = 0;
}
InnuTicker::~InnuTicker() {} // Destruktor
void InnuTicker::start()
{
if (callback == NULL)
return;
lastTime = millis();
enabled = true;
counts = 0;
status = RUNNING;
}
void InnuTicker::resume()
{
if (callback == NULL)
return;
lastTime = millis() - diffTime;
if (status == STOPPED)
counts = 0;
enabled = true;
status = RUNNING;
}
void InnuTicker::stop()
{
enabled = false;
counts = 0;
status = STOPPED;
}
void InnuTicker::pause()
{
diffTime = millis() - lastTime;
enabled = false;
status = PAUSED;
}
void InnuTicker::update()
{
if (tick())
callback();
}
void InnuTicker::updatenow()
{
lastTime = millis();
if (repeat - counts == 1)
enabled = false;
counts++;
callback();
}
void InnuTicker::config(uint32_t newTimer, uint32_t newRepeat)
{
this->timer = newTimer;
this->repeat = newRepeat;
lastTime = 0;
counts = 0;
}
void InnuTicker::config(fptr callback, uint32_t timer, uint32_t repeat)
{
this->timer = timer;
this->repeat = repeat;
this->callback = callback;
enabled = false;
lastTime = 0;
counts = 0;
}
bool InnuTicker::tick()
{
if (!enabled)
return false;
if ((millis() - lastTime) >= timer)
{
lastTime = millis();
if (repeat - counts == 1)
enabled = false;
counts++;
return true;
}
return false;
}
void InnuTicker::interval(uint32_t timer)
{
this->timer = timer;
}
uint32_t InnuTicker::elapsed()
{
return millis() - lastTime;
}
uint32_t InnuTicker::remaining()
{
if (timer == 0)
return 0;
else
return timer - elapsed();
}
status_t InnuTicker::state()
{
return status;
}
uint32_t InnuTicker::counter()
{
return counts;
}