last leds flahses wierdly

This commit is contained in:
2026-02-04 09:41:32 +01:00
parent 0903121e61
commit 5b82e5a41e
5 changed files with 101 additions and 28 deletions
+14
View File
@@ -39,5 +39,19 @@ struct TextNode
TextNode() : color(0), pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), is_deleted(true), is_scrolling() {}
};
struct RGB
{
unsigned char r;
unsigned char g;
unsigned char b;
};
struct Image
{
RGB pixels[PANEL_PIXEL_COUNT][DISPLAY_MAX_X + 1];
unsigned short width;
unsigned short height;
};
#endif // STRUCTS_H