-
Notifications
You must be signed in to change notification settings - Fork 2
/
countTimer.h
184 lines (152 loc) · 2.9 KB
/
countTimer.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#include "HardwareSerial.h"
#ifndef CNTUPTMR
#define CNTUPTMR
#include <Arduino.h>
#include <Countimer.h>
#include "menu.h"
#ifdef TIMER_S
void callBackToTimer();
class TimerCount
{
private:
Countimer countimer;
Screen *screen;
Line *footer;
String text;
bool status = false;
public:
String name;
TimerCount()
{
countimer.setCounter(24, 60, 60, Countimer::COUNT_UP, NULL);
countimer.setInterval(callBackToTimer, 1000);
Serial.println((unsigned long)&countimer, HEX);
}
TimerCount(Screen *screen, Line *footer)
{
if (screen)
{
this->screen = screen;
}
if (footer)
{
this->footer = footer;
}
countimer.setCounter(24, 60, 60, Countimer::COUNT_UP, NULL);
countimer.setInterval(callBackToTimer, 1000);
Serial.println((unsigned long)&countimer, HEX);
}
bool swichTimerMode()
{
this->status = !(this->status);
if (status)
{
this->onTimer();
return status;
}
this->offTimer();
return status;
}
void offTimer()
{
this->status = false;
this->stopTimer();
}
void onTimer()
{
this->status = true;
this->startTimer();
}
void timerTick()
{
this->countimer.run();
}
void setScreen(Screen *screen)
{
if (screen)
{
this->screen = screen;
}
}
void setFooter(Line *line)
{
if (line)
{
this->footer = line;
}
}
void timerChange()
{
if (this->status)
{
this->text = this->countimer.getCurrentTime();
char *textChar = this->convectorStrToChar();
this->footer->val->setChar(this->footer->val, textChar);
if (this->name)
{
Serial.print(this->name);
}
Serial.println(this->footer->val->var.mode);
menu.footerUpdate(&menu, this->footer->val);
free(textChar);
}
}
~TimerCount()
{
if (footer)
{
this->footer->destruct(this->footer);
}
}
private:
char *convectorStrToChar()
{
uint8_t lenText = this->text.length();
char *res = (char *)malloc(lenText * sizeof(char) + 1);
for (uint8_t iter = 0; iter < lenText; iter++)
{
res[iter] = text[iter];
}
res[lenText] = '\0';
return res;
}
void startTimer()
{
this->countimer.start();
if (this->screen && this->footer)
{
this->screen->footer = this->footer;
}
}
void stopTimer()
{
this->countimer.stop();
if (this->screen)
{
this->screen->footer = NULL;
}
}
};
TimerCount timerHeat(Heat, NULL);
TimerCount timerCool(Cooling, NULL);
void callBackToTimer()
{
timerHeat.timerChange();
timerCool.timerChange();
}
void timer_setup()
{
timerHeat.name = "Heat :";
timerCool.name = "Cool :";
timerHeat.setScreen(Heat);
timerCool.setScreen(Cooling);
timerHeat.setFooter(footerHeat);
timerCool.setFooter(footerCool);
}
void timer_loop()
{
timerHeat.timerTick();
timerCool.timerTick();
}
#endif
#endif