add lcd image icon rendering

This commit is contained in:
2026-06-25 15:19:13 +08:00
parent b3bb7002cd
commit eaac33eb04
12 changed files with 54282 additions and 96129 deletions

19
main/icon_image.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef ICON_IMAGE_H
#define ICON_IMAGE_H
#include <stdint.h>
#include "eye_image.h"
#define ICON_IMAGE_SOURCE_COUNT 6
typedef struct {
const eye_image_frame_t *frames;
uint16_t frame_count;
uint16_t width;
uint16_t height;
} icon_image_source_t;
extern const icon_image_source_t icon_image_sources[ICON_IMAGE_SOURCE_COUNT];
#endif