增加交流量和直流量显示页面框架

This commit is contained in:
2026-04-02 21:18:01 +08:00
parent df94630210
commit d19ce588b3
27 changed files with 1139 additions and 156 deletions

16
src/Drv/pages/YC/model.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef YC_MODEL_H
#define YC_MODEL_H
#include "types.h"
typedef struct model_t model_t;
typedef struct model_t {
const uint8_t *topName;
uint16_t wGroup;
uint16_t wPage;
} model_t;
void Model_Init(model_t *model);
#endif