Added clock and wordclock - functional

the matrix needs an update, though. Not all words are well put
This commit is contained in:
Matthias Mitscherlich
2023-01-18 14:54:23 +01:00
parent 1ae7d6ec5a
commit 7cb84d1660
8 changed files with 667 additions and 25 deletions
+8 -1
View File
@@ -103,9 +103,16 @@ typedef struct
class LEDMatrix
{
public:
struct coordinate
{
int x;
int y;
};
LEDMatrix(LEDMatrix_Parameters_t* parameters);
bool setPixelValue(unsigned int row, unsigned int colum, bool value);
bool setPixelValue(unsigned int colum, unsigned int row, bool value);
void setGlobalColour(uint8_t red, uint8_t green, uint8_t blue);
void clear(void);