-
Notifications
You must be signed in to change notification settings - Fork 13
/
c_frames.h
500 lines (394 loc) · 16.8 KB
/
c_frames.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/***************************************************
Copyright (C) 2016 Steffen Ochs
This program 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/>.
HISTORY: Please refer Github History
****************************************************/
byte flash = 0; // Flash Battery Symbol in Status Row
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Frame while system start
void drawConnect() {
displayblocked = true;
display.clear();
display.setColor(WHITE);
// Draw Logo
display.drawXbm(7, 4, nano_width, nano_height, xbmnano);
display.display();
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Frame while Loading
void drawLoading() {
display.clear();
display.setColor(WHITE);
display.setTextAlignment(TEXT_ALIGN_CENTER);
display.setFont(ArialMT_Plain_10);
if (battery.charge) {
display.fillRect(18,3,2,4); //Draw battery end button
display.fillRect(16,8,1,1); //Untere Ecke
display.drawRect(0,1,16,7); //Draw Outline
display.setColor(BLACK);
display.fillRect(4,0,8,10); //Untere Ecke
display.setColor(WHITE);
display.drawXbm(4, 0, 8, 10, xbmcharge);
display.fillRect(2,3,6,4); // Draw Battery Status
display.drawString(64, 30, "WIRD GELADEN...");
} else {
display.fillRect(18,3,2,4); //Draw battery end button
display.fillRect(16,8,1,1); //Untere Ecke
display.drawRect(0,1,16,7); //Draw Outline
display.fillRect(2,3,MAXBATTERYBAR,4); // Draw Battery Status
if (sys.god & (1<<1)) {}
else
display.drawString(64, 30, "LADEN BEENDET");
}
display.display();
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Frame while Question
void drawQuestion(int counter) {
displayblocked = true;
display.clear();
display.setColor(WHITE);
display.setTextAlignment(TEXT_ALIGN_LEFT);
display.setFont(ArialMT_Plain_10);
byte b0 = 1;
bool b1 = true;
switch (question.typ) { // Which Question?
case CONFIGRESET:
display.drawString(3,3,"Reset Config?");
break;
case RESETWIFI:
display.drawString(3,3,"Reset Wifi?");
break;
case RESETFW:
display.drawString(3,3,"Reset Firmware?");
break;
case IPADRESSE:
display.drawString(25,3,"WLAN-Anmeldung");
display.drawString(17, 20, "IP:");
display.drawString(33, 20, WiFi.localIP().toString());
b1 = false;
b0 = 2;
break;
case OTAUPDATE:
if (update.get == FIRMWAREVERSION) display.drawString(3,3,"Update: Erfolgreich!");
else display.drawString(3,3,"Update: Fehlgeschlagen!");
b1 = false;
b0 = 2;
break;
case TUNE:
if (counter == 0) {
display.drawString(3,3,"Autotune: gestartet!");
display.setTextAlignment(TEXT_ALIGN_CENTER);
display.drawString(64,20,"PID danach fortsetzen?");
//display.drawString(64,18,"fortsetzen?");
b1 = true;
b0 = true;
break;
}
else if(counter == 1) display.drawString(3,3,"Autotune: beendet!");
else display.drawString(3,3,"Autotune: abgebrochen!");
b1 = false;
b0 = 2;
break;
case HARDWAREALARM:
String text = "ALARM! Kanal ";
text += String(counter+1);
display.drawString(25,3,text);
display.drawString(40,18,"Stoppen?");
b1 = false;
break;
}
display.setFont(ArialMT_Plain_16);
display.setTextAlignment(TEXT_ALIGN_LEFT);
if (b1) display.drawString(10,40,"NO");
display.setTextAlignment(TEXT_ALIGN_RIGHT);
if (b0 == 1) display.drawString(118,40,"YES");
else if (b0 == 2) display.drawString(118,40,"OK");
display.display();
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Frame while Update
void drawUpdate(String txt) {
display.clear();
display.setColor(WHITE);
display.setTextAlignment(TEXT_ALIGN_LEFT);
display.setFont(ArialMT_Plain_10);
display.drawString(3,3,"Update: " + txt);
display.setTextAlignment(TEXT_ALIGN_CENTER);
display.setFont(ArialMT_Plain_16);
display.drawString(64,28,"Bitte warten!");
display.display();
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Frame while Menu
void drawMenu() {
display.clear();
display.setColor(WHITE);
display.setTextAlignment(TEXT_ALIGN_LEFT);
display.setFont(ArialMT_Plain_10);
// Sandwich
display.drawLine(3, 3, 13, 3);
display.drawLine(3, 7, 13, 7);
display.drawLine(3, 11, 13, 11);
display.drawXbm(17,41,arrow_height,arrow_width,xbmarrow2);
display.drawXbm(17,27,arrow_height,arrow_width,xbmarrow1);
display.drawString(50,2,"MENU");
display.setFont(ArialMT_Plain_16);
switch (menu_count) {
case 0: // Temperature
//display.fillRect(0, 18, 128, 14);
display.drawString(30,27,"Temperatur");
break;
case 1: // Pitmaster
//display.fillRect(0, 33, 128, 14);
display.drawString(30,27,"Pitmaster");
break;
case 2: // System
//display.fillRect(0, 48, 128, 14);
display.drawString(30,27,"System");
break;
}
display.display();
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// STATUS ROW
void gBattery(OLEDDisplay *display, OLEDDisplayUiState* state) {
int battPixel = 0.5+((battery.percentage*MAXBATTERYBAR)/100.0);
flash = !flash; //Toggle flash flag for icon blinking later
display->setTextAlignment(TEXT_ALIGN_LEFT);
display->setFont(Noto_Sans_8);
switch (pitMaster[0].active) {
case PITOFF: if (millis() > BATTERYSTARTUP) display->drawString(24,0,String(battery.percentage)); break;
case DUTYCYCLE: // show "M"
case MANUAL: display->drawString(33,0, "M " + String(pitMaster[0].value,0) + "%"); break;
case AUTO:
if (opl.detected) display->drawString(33,0, "OPL: " + String(opl.temp,1));
else display->drawString(33,0, "P " + String(pitMaster[0].set,1) + " / " + String(pitMaster[0].value,0) + "%");
break;
case AUTOTUNE: display->drawString(33,0, "A " + String(autotune.set) + " / " + String(pitMaster[0].value,0) + "%"); break;
}
display->setTextAlignment(TEXT_ALIGN_RIGHT);
if (wifi.mode == 6 && millis() > 10000) display->drawString(128,0,"NO");
else if (wifi.mode == 0) display->drawString(128,0,"OFF");
else if (wifi.mode == 2) display->drawString(128,0,"AP");
else if (wifi.mode == 1) {
//display->drawString(128,0,String(wifi.rssi)+" dBm");
display->fillRect(116,8,2,1); //Draw ground line
display->fillRect(120,8,2,1); //Draw ground line
display->fillRect(124,8,2,1); //Draw ground line
if (wifi.rssi > -105) display->fillRect(116,5,2,3); //Draw 1 line
if (wifi.rssi > -95) display->fillRect(120,3,2,5); //Draw 2 line
if (wifi.rssi > -80) display->fillRect(124,1,2,7); //Draw 3 line
}
//display->drawString(80,0,String(map(pit_y,0,pit_pause,0,100)) + "%");
//if (sys.fastmode) display->drawString(100,0,"F");
if (flash && battery.percentage < 10) {} // nothing for flash effect
else if (battery.charge) {
display->fillRect(18,3,2,4); //Draw battery end button
display->fillRect(16,8,1,1); //Untere Ecke
display->drawRect(0,1,16,7); //Draw Outline
display->setColor(BLACK);
display->fillRect(4,0,8,10); //Untere Ecke
display->setColor(WHITE);
display->drawXbm(4, 0, 8, 10, xbmcharge);
display->fillRect(2,3,6,4); // Draw Battery Status
}
else {
display->fillRect(18,3,2,4); //Draw battery end button
display->fillRect(16,8,1,1); //Untere Ecke
display->drawRect(0,1,16,7); //Draw Outline
display->fillRect(2,3,battPixel,4); // Draw Battery Status
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// MAIN TEMPERATURE FRAME
void drawTemp(OLEDDisplay *display, OLEDDisplayUiState* state, int16_t x, int16_t y) {
display->drawXbm(x+19,18+y,20,36,xbmtemp); // Symbol
display->fillRect(x+27,y+43-ch[current_ch].match,4,ch[current_ch].match); // Current level
display->setTextAlignment(TEXT_ALIGN_RIGHT);
display->setFont(ArialMT_Plain_10);
display->drawString(19+x, 20+y, String(current_ch+1)); // Channel
display->drawString(114+x, 20+y, ch[current_ch].name); // Channel Name //utf8ascii()
display->setFont(ArialMT_Plain_16);
if (ch[current_ch].isalarm && !pulsalarm) {
if (ch[current_ch].temp!=INACTIVEVALUE) {
if (sys.unit == "F") display->drawCircle(100,41,2); // Grad-Zeichen
else display->drawCircle(99,41,2); // Grad-Zeichen
display->drawString(114+x, 36+y, String(ch[current_ch].temp,1)+ " " + sys.unit); // Channel Temp
} else display->drawString(114+x, 36+y, "OFF");
} else if (!ch[current_ch].isalarm) {
if (ch[current_ch].temp!=INACTIVEVALUE) {
if (sys.unit == "F") display->drawCircle(100,41,2); // Grad-Zeichen
else display->drawCircle(99,41,2); // Grad-Zeichen
display->drawString(114+x, 36+y, String(ch[current_ch].temp,1)+ " " + sys.unit); // Channel Temp
} else display->drawString(114+x, 36+y, "OFF");
}
Pitmaster pitmaster;
for (int i = 0; i < PITMASTERSIZE; i++) {
pitmaster = pitMaster[i];
if (i == 1 && pitmaster.channel == pitMaster[0].channel) return;
// Show Pitmaster Activity on Icon
if (pitmaster.active > 0) {
if (current_ch == pitmaster.channel) {
display->setFont(ArialMT_Plain_10);
switch (pitmaster.active) {
case DUTYCYCLE: // show "M"
case MANUAL: display->drawString(44+x, 31+y, "M"); return;
case AUTO: display->drawString(44+x, 31+y, "P"); break;
case AUTOTUNE: display->drawString(44+x, 31+y, "A"); break;
}
int _cur = ch[current_ch].temp*10;
int _set = pitmaster.set*10;
if (_cur > _set)
display->drawXbm(x+37,24+y,arrow_height,arrow_width,xbmarrow2);
else if (_cur < _set)
display->drawXbm(x+37,24+y,arrow_height,arrow_width,xbmarrow1);
else display->drawXbm(x+37,24+y,arrow_width,arrow_height,xbmarrow);
}
}
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// TEMPERATURE CONTEXT -Page
void drawkontext(OLEDDisplay *display, OLEDDisplayUiState* state, int16_t x, int16_t y) {
if (flashinwork) {
display->drawXbm(x+19,18+y,20,36,xbmtemp); // Symbol
display->fillRect(x+27,y+43-ch[current_ch].match,4,ch[current_ch].match); // Current level
}
display->setTextAlignment(TEXT_ALIGN_RIGHT);
display->setFont(ArialMT_Plain_10);
display->drawString(19+x, 20+y, String(current_ch+1)); // Channel
display->drawString(114, 20, menutextde[current_frame]);
switch (current_frame) {
case 1: // UPPER LIMIT
display->drawLine(33+x,25+y,50,25);
display->drawCircle(95,23,1); // Grad-Zeichen
if (inWork) display->drawString(104+x, 19+y, String(tempor,1)+ " " + sys.unit);
else display->drawString(104+x, 19+y, String(ch[current_ch].max,1)+ " " + sys.unit); // Upper Limit
break;
case 2: // LOWER LIMIT
display->drawLine(33+x,39+y,50,39);
display->drawCircle(95,38,1); // Grad-Zeichen
if (inWork) display->drawString(104+x, 34+y, String(tempor,1)+ " " + sys.unit);
else display->drawString(104+x, 34+y, String(ch[current_ch].min,1)+ " " + sys.unit); // Lower Limit
break;
case 3: // TYP
if (inWork) display->drawString(114+x, 36+y, ttypname[(int) tempor]);
else display->drawString(114+x, 36+y, ttypname[ch[current_ch].typ]); // Typ
break;
case 4: // ALARM
if (inWork) display->drawString(114+x, 36+y, alarmname[(int) tempor]);
else display->drawString(114+x, 36+y, alarmname[ch[current_ch].alarm]); // Alarm
break;
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// PITMASTER -Page
void drawpit(OLEDDisplay *display, OLEDDisplayUiState* state, int16_t x, int16_t y) {
if (flashinwork) display->drawXbm(x+15,20+y,pit_width,pit_height,xbmpit); // Symbol
display->setTextAlignment(TEXT_ALIGN_RIGHT);
display->setFont(ArialMT_Plain_10);
display->drawString(116, 20, menutextde[current_frame]+":");
switch (current_frame) {
case 6: // PID PROFIL
if (inWork) display->drawString(116+x, 36+y, pid[(int) tempor].name);
else display->drawString(116+x, 36+y, pid[pitMaster[0].pid].name);
break;
case 7: // PITMASTER CHANNEL
if (inWork) display->drawString(116+x, 36+y, String((int)tempor +1));
else display->drawString(116+x, 36+y, String(pitMaster[0].channel+1));
break;
case 8: // SET TEMPERATUR
display->drawCircle(107,40,1); // Grad-Zeichen
if (inWork) display->drawString(116+x, 36+y, String(tempor,1)+ " " + sys.unit);
else display->drawString(116+x, 36+y, String(pitMaster[0].set,1)+ " " + sys.unit);
break;
case 9: // PITMASTER TYP
if ((inWork && tempor) || (!inWork && pitMaster[0].active > 0)) {
if (pitMaster[0].active == AUTO) display->drawString(116+x, 36+y, "AUTO");
else if (pitMaster[0].active == AUTOTUNE) display->drawString(116+x, 36+y, "AUTOTUNE");
else if (pitMaster[0].active == MANUAL) display->drawString(116+x, 36+y, "MANUAL");
}
else display->drawString(116+x, 36+y, "OFF");
break;
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// SYSTEM -Page
void drawsys(OLEDDisplay *display, OLEDDisplayUiState* state, int16_t x, int16_t y) {
if (flashinwork)
display->drawXbm(x+5,22+y,sys_width,sys_height,xbmsys);
display->setTextAlignment(TEXT_ALIGN_RIGHT);
display->setFont(ArialMT_Plain_10);
display->drawString(120, 20, menutextde[current_frame]+":");
switch (current_frame) {
case 11: // SSID
if (wifi.mode == 2) display->drawString(120, 36, sys.apname);
else if (wifi.mode == 1) display->drawString(120, 36, WiFi.SSID());
else if (wifi.mode == 0 || wifi.mode == 6) display->drawString(120, 36, "");
break;
case 12: // IP
if (wifi.mode == 2) display->drawString(120, 36, WiFi.softAPIP().toString());
else if (wifi.mode == 1) display->drawString(120, 36, WiFi.localIP().toString());
else if (wifi.mode == 0 || wifi.mode == 6) display->drawString(120, 36, "");
break;
case 13: // HOST
display->drawString(120, 36, sys.host);
break;
case 14: // UNIT
display->drawCircle(105,40,1); // Grad-Zeichen
if (inWork && tempor) display->drawString(114+x, 36+y, "F");
else if (!inWork) display->drawString(114+x, 36+y, sys.unit);
else display->drawString(114+x, 36+y, "C");
break;
case 15: // FIRMWARE VERSION
display->drawString(114+x,36+y,FIRMWAREVERSION);
break;
}
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// BACK -Page
void drawback(OLEDDisplay *display, OLEDDisplayUiState* state, int16_t x, int16_t y) {
display->drawXbm(x+5,22+y,back_width,back_height,xbmback);
display->setTextAlignment(TEXT_ALIGN_RIGHT);
display->setFont(ArialMT_Plain_16);
display->drawString(100+x, 27+y, "BACK");
}
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Initialising Frames
// this array keeps function pointers to all frames
FrameCallback frames[] = {drawTemp, drawkontext, drawpit, drawsys, drawback};
// Overlays are statically drawn on top of a frame eg. a clock
OverlayCallback overlays[] = {gBattery};
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Configuration OLEDDisplay
void set_OLED() {
// The ESP is capable of rendering 60fps in 80Mhz mode
// but that won't give you much time for anything else
// run it in 160Mhz mode or just set it to 30 fps
ui.setTargetFPS(30); //30
// Add frames
ui.setFrames(frames, 5);
// Add overlays
ui.setOverlays(overlays, 1);
ui.setTimePerFrame(10000);
ui.setTimePerTransition(300); //300
ui.disableAutoTransition();
ui.disableIndicator();
// Initialising the UI will init the display too.
ui.init();
question.typ = NO;
question.con = 0;
display.flipScreenVertically();
display.clear();
display.display();
}