initial game template

This commit is contained in:
Adolfo Reyna
2026-01-29 15:58:58 -05:00
parent de566223b9
commit 372895fa08
5 changed files with 1076 additions and 594 deletions

View File

@@ -93,13 +93,13 @@ void LowLevelDisplayEPaper::refresh() {
return;
}
printf("Refreshing e-paper display (partial refresh)...\n");
// printf("Refreshing e-paper display (partial refresh)...\n");
// Use partial refresh for fast updates (~1 second instead of ~15 seconds)
// Partial refresh updates only the changed pixels
EPD_4IN2_V2_PartialDisplay(framebuffer, 0, 0, EPD_4IN2_V2_WIDTH, EPD_4IN2_V2_HEIGHT);
printf("E-paper partial refresh complete\n");
// printf("E-paper partial refresh complete\n");
dirty = false;
}