refactor: clean up SH1106Display and CharTestScreen

- Remove redundant translateUTF8ToBlocks override (now same as base class)
- Remove cp437/setTextColor/setTextSize calls from startFrame (unused since print() is overridden)
- Simplify setTextSize (both branches were identical)
- CharTestScreen: update comment, use UTF-8 literals for Greek, fix refresh rate 500→2000ms

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jakub
2026-05-18 13:39:01 +02:00
parent 7bba82f7ce
commit 14bf908f3f
3 changed files with 6 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
#pragma once
// Test screen that displays sample characters from various alphabets/scripts.
// Useful for verifying transliteration and font coverage on experimental fonts.
// Test screen that displays sample characters from various alphabets/scripts
// to verify native font coverage (no transliteration — Lemon renders natively).
class CharTestScreen : public UIScreen {
UITask* _task;
@@ -41,7 +41,7 @@ public:
display.setCursor(display.width() - 6, startY + (_visible - 1) * lineH);
display.print("v");
}
return 500;
return 2000;
}
bool handleInput(char c) override {
@@ -52,7 +52,6 @@ public:
}
};
// Sample strings are printed as raw UTF-8 (no transliteration) to test native font coverage.
// Lemon font covers U+0020U+04FF: Latin, Greek and Cyrillic all render natively.
const CharTestScreen::TestLine CharTestScreen::LINES[CharTestScreen::LINE_COUNT] = {
{ "PL", "ąćęłńóśźżĄĆĘŁŃ" }, // Polish
@@ -65,5 +64,5 @@ const CharTestScreen::TestLine CharTestScreen::LINES[CharTestScreen::LINE_COUNT]
{ "TR", "çğışöüİŞĞ" }, // Turkish
{ "LT", "āēīūģķļņŗėįų" }, // Baltic (Latvian/Lithuanian)
{ "RU", "АБВГДЕЖЗабвгдеж" }, // Cyrillic
{ "GR", "\xCE\xB1\xCE\xB2\xCE\xB3\xCE\xB4\xCE\xB5\xCE\xB6\xCE\xB7\xCE\xB8\xCE\xB9\xCE\xBA" }, // Greek αβγδεζηθικ
{ "GR", "αβγδεζηθικλμ" }, // Greek
};