firt commit

This commit is contained in:
2026-06-17 17:28:22 +08:00
commit b3bb7002cd
18 changed files with 96507 additions and 0 deletions

13
main/eye_image.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef EYE_IMAGE_H
#define EYE_IMAGE_H
#include <stdint.h>
#define EYE_IMAGE_WIDTH 320
#define EYE_IMAGE_HEIGHT 240
#define EYE_IMAGE_FRAME_COUNT 15
extern const uint16_t eye_image[EYE_IMAGE_FRAME_COUNT][EYE_IMAGE_WIDTH * EYE_IMAGE_HEIGHT];
extern const uint16_t eye_image_delay_ms[EYE_IMAGE_FRAME_COUNT];
#endif