added clock wordmap and made wordmap a baseclass

This commit is contained in:
Matthias Mitscherlich
2023-02-07 13:38:23 +01:00
parent 2e8aa31cbf
commit 35c940ca5b
7 changed files with 206 additions and 70 deletions
+4 -4
View File
@@ -75,14 +75,14 @@ class Wordmap
bool setWord(Language_t lang, string identifier, bool value);
private:
protected:
struct word
{
string identifier;
// list<LEDMatrix::coordinate> pixels;
LEDMatrix::coordinate position;
int length;
list<LEDMatrix::coordinate> pixels;
// LEDMatrix::coordinate position;
// int length;
};
LEDMatrix* matrix;