Now can display a monochrome image from byte array + added slow/fast init display routine

This commit is contained in:
2026-04-04 14:41:59 -04:00
parent bf91dc1af6
commit f139ee8a00
4 changed files with 3124 additions and 4044 deletions
+3 -2
View File
@@ -19,7 +19,7 @@
#define EPD_WIDTH 800
#define EPD_HEIGHT 480
enum class epd_color_t : uint8
enum class epd_color : uint8
{
BLACK = 0x00,
WHITE = 0xFF
@@ -30,5 +30,6 @@ void epd_shutdown(void);
void epd_init_display();
void epd_shutdown_display(void);
void epd_refresh(void);
void epd_clear(epd_color_t level);
void epd_clear(epd_color level);
void epd_draw_bitmap(epd_color clearColor, const uint8 *bitmap);
bool epd_is_asleep(void);