-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.ino
303 lines (279 loc) · 7.94 KB
/
terminal.ino
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
#include <Adafruit_GFX.h>
#include <Adafruit_SH1106.h>
#include <EEPROM.h>
#include <Wire.h>
//----------------------------------------compiler directives and constants-------------------
#define saveInterval 5000
#define M5StackKeyboardIncluded
#ifdef M5StackKeyboardIncluded
#define CARDKB_ADDR 0x5F
#endif // M5StackKeyboardIncluded
//----------------------------------------variables-------------------------------------------
char charFromSerial;
Adafruit_SH1106 myDisplay(7, 8, 6); //Adafruit_SH1106(int8_t DC, int8_t RST, int8_t CS);
//----------------------------------------functions-------------------------------------------
#define FONT_SIZE 1
#define fontX 7
#define fontY 8
#define cursorBlinkTime 750
class terminalSH1106 {
public:
static const int ALCADA = 8;
static const int AMPLADA = 18;
char charArray[AMPLADA][ALCADA];
byte currPosX;
byte currPosY;
bool cursorState, saved, displayed, romEnabled;
unsigned long lastCursorBlink;
unsigned long lastChange;
Adafruit_SH1106* pantalla;
char blank = ' ';
int saveEepromStartIndex;
terminalSH1106(Adafruit_SH1106* pantallaExt) {
this->pantalla = pantallaExt;
}
void init(bool useRom = true) {
// starts the tarminal
pantalla->begin(SH1106_SWITCHCAPVCC);
pantalla->clearDisplay();
pantalla->setCursor(0, 0);
pantalla->setTextWrap(true);
pantalla->setTextColor(WHITE);
pantalla->setTextSize(FONT_SIZE);
pantalla->println("Greets from: ");
pantalla->println("[email protected]");
pantalla->display();
delay(cursorBlinkTime * 2);
netejaArray();
if (romEnabled)loadState();
displayArray();
cursorState = false;
saved = true;
lastCursorBlink = millis();
lastChange = 0;
saveEepromStartIndex = 0;
this->romEnabled = useRom;
}
void scrollArray() {
// move all up 1 line, discard top, bottom blank
for (int y = 0; y < (ALCADA - 1); y++) {
for (int x = 0; x < AMPLADA; x++)
{
charArray[x][y] = charArray[x][y + 1];
}
}
netejaLinia(ALCADA - 1);
}
void crlf() {
// crlf cursor
currPosX = 0;
currPosY += 1;
displayed = false;
}
byte lastFilledChar() {
// last non blank character of the line
for (int x = (AMPLADA - 1); x >= 0; x--)
{
if (charArray[x][currPosY] != blank) return x;
}
return 0;
}
void doBack() {
// backspace cursor
if (currPosX > 0) {
currPosX -= 1;
charArray[currPosX][currPosY] = this->blank;
displayed = false;
}
else if (currPosY > 0) {
currPosY -= 1;
currPosX = lastFilledChar();
if ((currPosX < (AMPLADA - 1)) && (currPosX > 0)) {
currPosX += 1;
}
else {
charArray[currPosX][currPosY] = this->blank;
}
displayed = false;
}
}
void escriuCaracter(char caracter, bool append = true) {
// character input
if ((caracter == 0x0D) || (caracter == 0x0A)) {// cr || lf
crlf();
}
else if ((caracter == 0x08) || (caracter == 0x7F)) {//backspace
doBack();
}
else {
charArray[currPosX][currPosY] = caracter;
if (append)currPosX += 1;
displayed = saved = false;
this->lastChange = millis();
}
if (currPosX >= AMPLADA) {
crlf();
}
if (currPosY >= ALCADA) {
currPosY = ALCADA - 1;
scrollArray();
}
}
void netejaArray() {
// assign blank to each character, and set cursor to 0,0
for (int y = 0; y < ALCADA; y++) {
netejaLinia(y);
}
currPosX = 0;
currPosY = 0;
}
void netejaLinia(int y) {
// assign blank to each character of the line
for (int x = 0; x < AMPLADA; x++)
{
charArray[x][y] = this->blank;
}
}
void displayArray() {
// show terminal array on screen
pantalla->clearDisplay();
for (int y = 0; y < ALCADA; y++) {
for (int x = 0; x < AMPLADA; x++)
{
pantalla->drawChar(x*fontX, y*fontY, charArray[x][y], WHITE, BLACK, FONT_SIZE);
}
}
pantalla->display();
displayed = true;
}
void cursorBlink(bool display = true) {
// draw or erase cursor
this->pantalla->drawFastHLine((int16_t)this->currPosX * fontX, (((int16_t)this->currPosY + 1) * fontY) - 1, fontX - 2, (cursorState) ? WHITE : BLACK);
cursorState = !cursorState;
if (display)this->pantalla->display();
}
void cursorBlinkIfNeeded() {
// check internal timer and calls cursor blink if needed
if (millis() > (lastCursorBlink + cursorBlinkTime)) {
cursorBlink();
lastCursorBlink = millis();
}
else if ((lastCursorBlink + cursorBlinkTime) < lastCursorBlink) {
cursorBlink();
lastCursorBlink = 0;
}
}
void saveState() {
// save terminal buffer to eeprom
for (int y = 0; y < ALCADA; y++) {
for (int x = 0; x < AMPLADA; x++)
{
EEPROM.write(((y*AMPLADA) + x + saveEepromStartIndex), (uint8_t)charArray[x][y]);
}
}
EEPROM.write(saveEepromStartIndex + (ALCADA*AMPLADA) + 1, currPosX);
EEPROM.write(saveEepromStartIndex + (ALCADA*AMPLADA), currPosY);
saved = true;
}
void loadState() {
// load terminal buffer from eeprom
if ((EEPROM.read(0) == 0x00) || (EEPROM.read(0) == 0xFF)) {
netejaArray();
saveState();
return;
}
for (int y = 0; y < ALCADA; y++) {
for (int x = 0; x < AMPLADA; x++)
{
charArray[x][y] = (char)EEPROM.read((y*AMPLADA) + x + saveEepromStartIndex);
}
}
currPosX = EEPROM.read(saveEepromStartIndex + (ALCADA*AMPLADA) + 1);
currPosY = EEPROM.read(saveEepromStartIndex + (ALCADA*AMPLADA));
saved = true;
}
void checkSave() {
// internal timed eeprom save
if (saved) return;
if (millis() > (this->lastChange + saveInterval)) {
saveState();
lastChange = millis();
}
else if ((lastChange + saveInterval + 1000) < lastChange) {
saveState();
lastChange = 0;
}
}
int getpage() {
// get active eeprom page
return saveEepromStartIndex / ((ALCADA * AMPLADA) + 2);
}
void setPage(int page) {
// load,display saved terminal buffer from eeprom
if (!romEnabled)return;
if ((page < 0) || (page == getpage())) {
return;
}
if (!saved) {
saveState();
}
saveEepromStartIndex = (page * ((ALCADA * AMPLADA) + 2));
loadState();
displayPage();
}
void displayPage() {
// page number splash screen
pantalla->clearDisplay();
pantalla->setCursor(0, 0);
pantalla->print("Pag: ");
pantalla->print(getpage());
pantalla->display();
delay(cursorBlinkTime);
displayArray();
}
void run() {
// display buffer, checks if eeprom save needed
if (!displayed) {
//Serial.println("display");
if (cursorState)cursorBlink(false);
displayArray();
}
else {
cursorBlinkIfNeeded();
}
if (romEnabled)checkSave();
}
};
terminalSH1106 myTerminal = terminalSH1106(&myDisplay);
void setup() {
Serial.begin(57600);
Serial.println("Greetings from [email protected]");
myTerminal.init(false);
Wire.begin();
}
void loop(void) {
#ifdef M5StackKeyboardIncluded
Wire.requestFrom(CARDKB_ADDR, 1);
while (Wire.available())
{
charFromSerial = Wire.read();
if ((charFromSerial == 0xFFFFFFB6) || (charFromSerial == 0xFFFFFFB5)) {
if (charFromSerial == 0xFFFFFFB6) {
myTerminal.setPage(myTerminal.getpage() + 1);
}
else {
myTerminal.setPage(myTerminal.getpage() - 1);
}
charFromSerial = 0x00000000;
}
if (charFromSerial != 0x00) {
myTerminal.escriuCaracter(charFromSerial);
}
}
#endif
while (Serial.available()) {
charFromSerial = Serial.read();
myTerminal.escriuCaracter(charFromSerial);
}
myTerminal.run();
}