Now can display a monochrome image from byte array + added slow/fast init display routine
This commit is contained in:
@@ -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);
|
||||
Reference in New Issue
Block a user