- Fixed drawing of round objects (Circles, Rounded Rects) using a lookup table

- Added function to read out the display_buffer via USB-Serial
 - Added basic structure and files for later complete firmware (still in progress)
 - Added Doc folder with schematic in it
 - Added Python script and batch file to read out the display buffer and open the image in gimp
This commit is contained in:
2025-09-07 08:55:39 +02:00
parent 714b5be13c
commit 128d42c586
66 changed files with 29943 additions and 225 deletions

View File

@@ -27,7 +27,7 @@ Configuration_Menu_Select _Configuration_Default_Select_Menu = {
// Configuration_Menu_Icon_Row
Configuration_Select_YesNo _Configuration_Default_Select_YesNo = {
.Title_Font = _Font_Victor_Mono_Bold_8x19,
.Title_Font = _Font_DejaVu_Sans_Mono_10x17,
.Title_Color = DISPLAY_COLOR_LIGHTGREY,
.Title_Y_Center = DISPLAY_Y_CENTER-20,
@@ -38,9 +38,9 @@ Configuration_Select_YesNo _Configuration_Default_Select_YesNo = {
};
Configuration_Select_List _Configuration_Default_Select_List = {
.Font = _Font_Victor_Mono_Bold_8x19,
.Font = _Font_DejaVu_Sans_Mono_10x17,
.List_Entry_Y_Gap = 10,
.Color_Selected = DISPLAY_COLOR_CYAN,
.Color_Selected = DISPLAY_COLOR_WHITE,
.Color_Not_Selected = DISPLAY_COLOR_DARKGREY
};