mirror of
https://git.beihong.wang/wangbeihong/iot-bedroom-environment-controller.git
synced 2026-04-23 14:13:05 +08:00
- Rename component directory from lvgl_st7735s_use to lvgl_st7789_use - Update CMakeLists.txt to register new source files - Add comprehensive README documentation for ST7789 configuration - Add time_alarm module with SNTP synchronization and alarm management - Add sensors header for sensor abstraction layer
33 lines
723 B
C
33 lines
723 B
C
#ifndef EEZ_LVGL_UI_IMAGES_H
|
|
#define EEZ_LVGL_UI_IMAGES_H
|
|
|
|
#include <lvgl.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const lv_img_dsc_t img_temp;
|
|
extern const lv_img_dsc_t img_humi;
|
|
extern const lv_img_dsc_t img_mois;
|
|
extern const lv_img_dsc_t img_light;
|
|
extern const lv_img_dsc_t img_wifi_connect;
|
|
extern const lv_img_dsc_t img_wifi_disconnect;
|
|
extern const lv_img_dsc_t img_mqtt_connected;
|
|
extern const lv_img_dsc_t img_mqtt_disconnected;
|
|
|
|
#ifndef EXT_IMG_DESC_T
|
|
#define EXT_IMG_DESC_T
|
|
typedef struct _ext_img_desc_t {
|
|
const char *name;
|
|
const lv_img_dsc_t *img_dsc;
|
|
} ext_img_desc_t;
|
|
#endif
|
|
|
|
extern const ext_img_desc_t images[8];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*EEZ_LVGL_UI_IMAGES_H*/ |