initial clock mode impl

This commit is contained in:
Shuanglei Tao
2025-03-26 15:45:51 +08:00
parent f5cd6b431b
commit 3f9ec9de1b
19 changed files with 578 additions and 277 deletions

15
GUI/GUI.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef __GUI_H
#define __GUI_H
#include <stdint.h>
#include "EPD_driver.h"
typedef enum {
MODE_NONE = 0,
MODE_CALENDAR = 1,
MODE_CLOCK = 2,
} display_mode_t;
void DrawGUI(epd_model_t *epd, uint32_t timestamp, display_mode_t mode);
#endif