mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 20:33:28 +00:00
22 lines
308 B
C
22 lines
308 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void display_init();
|
|
void spi_init();
|
|
void display_connect();
|
|
void display_splash_screen();
|
|
|
|
void display_clear();
|
|
void display_refresh();
|
|
void display_update();
|
|
|
|
void display_wake();
|
|
void display_sleep();
|
|
|
|
void display_alert(char* text);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|