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
12 lines
360 B
C
12 lines
360 B
C
#include "images.h"
|
|
|
|
const ext_img_desc_t images[8] = {
|
|
{ "temp", &img_temp },
|
|
{ "humi", &img_humi },
|
|
{ "mois", &img_mois },
|
|
{ "light", &img_light },
|
|
{ "wifi_connect", &img_wifi_connect },
|
|
{ "wifi_disconnect", &img_wifi_disconnect },
|
|
{ "mqtt_connected", &img_mqtt_connected },
|
|
{ "mqtt_disconnected", &img_mqtt_disconnected },
|
|
}; |