Browse Source

表格绘图显示

master
忱 沈 5 months ago
parent
commit
a778be61f4
  1. 147
      applications/lvgl/guider/custom/custom.c
  2. 1
      applications/lvgl/guider/custom/custom.h
  3. 1
      applications/lvgl/guider/generated/events_init.c
  4. 8
      applications/lvgl/guider/generated/gui_guider.h
  5. 2583
      applications/lvgl/guider/generated/guider_fonts/lv_font_Alatsi_Regular_18.c
  6. 1919
      applications/lvgl/guider/generated/guider_fonts/lv_font_montserratMedium_12.c
  7. 1523
      applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_12.c
  8. 465
      applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_16.c
  9. 780
      applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_24.c
  10. 5231
      applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_32.c
  11. 115
      applications/lvgl/guider/generated/setup_scr_screen.c
  12. 41
      applications/lvgl/ui_data_csv.c
  13. 4
      applications/lvgl/ui_data_labels.c
  14. 7
      applications/lvgl/ui_data_labels.h

147
applications/lvgl/guider/custom/custom.c

@ -14,7 +14,9 @@
#include <stdio.h> #include <stdio.h>
#include "lvgl.h" #include "lvgl.h"
#include "custom.h" #include "custom.h"
#include <guider/generated/events_init.h>
#include <guider/generated/gui_guider.h>
#include <guider/generated/widgets_init.h>
/********************* /*********************
* DEFINES * DEFINES
*********************/ *********************/
@ -22,7 +24,7 @@
/********************** /**********************
* TYPEDEFS * TYPEDEFS
**********************/ **********************/
//lv_obj_t *screen_list_inf;
/********************** /**********************
* STATIC PROTOTYPES * STATIC PROTOTYPES
**********************/ **********************/
@ -34,6 +36,142 @@
/** /**
* Create a demo application * Create a demo application
*/ */
int16_t g_selected_row = -1;
// 绘图回调
static void table_style_cb(lv_event_t *e)
{
lv_event_code_t code = lv_event_get_code(e);
lv_obj_t *table = lv_event_get_target(e);
if (code == LV_EVENT_DRAW_PART_BEGIN) {
lv_obj_draw_part_dsc_t *dsc = lv_event_get_param(e);
// 检查是否是单元格绘制
if (dsc->part == LV_PART_ITEMS && dsc->id < LV_TABLE_CELL_NONE) {
uint16_t row = dsc->id / lv_table_get_col_cnt(table);
//uint16_t col = dsc->id % lv_table_get_col_cnt(table);
if (row == 0) { // 表头
dsc->rect_dsc->bg_opa = LV_OPA_COVER;
dsc->rect_dsc->bg_color = lv_color_hex(0xd5dee6);
dsc->label_dsc->color = lv_color_hex(0x000000);
dsc->label_dsc->font = &lv_font_simsun_30;
}// 如果是选中行,绘制蓝色背景
else if (row == g_selected_row) {
dsc->rect_dsc->bg_color = lv_color_hex(0x007185); // 蓝色背景
dsc->rect_dsc->bg_opa = LV_OPA_COVER;
dsc->label_dsc->color = lv_color_hex(0xFFFFFF); // 白色文字
}
}
}
/* lv_obj_draw_part_dsc_t *dsc = lv_event_get_draw_part_dsc(e);
if (dsc->part != LV_PART_ITEMS) return;
uint16_t row = dsc->id / lv_table_get_col_cnt(lv_event_get_target(e));
if (row == 0) { // 表头
dsc->rect_dsc->bg_opa = LV_OPA_COVER;
dsc->rect_dsc->bg_color = lv_color_hex(0xd5dee6);
dsc->label_dsc->color = lv_color_hex(0x000000);
dsc->label_dsc->font = &lv_font_simsun_30;
}*/
}
//点击事件回调
static void table_click_event_cb(lv_event_t *e) {
lv_obj_t *table = lv_event_get_target(e);
lv_indev_t *indev = lv_indev_get_act();
if (indev == NULL) return;
// 获取点击坐标
lv_point_t point;
lv_indev_get_point(indev, &point);
// 获取 table 区域
lv_area_t table_area;
lv_obj_get_coords(table, &table_area);
// 计算相对 Y 坐标
int32_t rel_y = point.y - table_area.y1;
//通过内容高度和行数计算行高
uint16_t row_cnt = lv_table_get_row_cnt(table);
if (row_cnt == 0) return;
// 获取表格内容区域高度(减去边框和padding)
int32_t border_width = lv_obj_get_style_border_width(table, LV_PART_MAIN);
int32_t pad_top = lv_obj_get_style_pad_top(table, LV_PART_MAIN);
int32_t pad_bottom = lv_obj_get_style_pad_bottom(table, LV_PART_MAIN);
int32_t content_h = table_area.y2 - table_area.y1 - border_width * 2 - pad_top - pad_bottom;
// 计算行高
int32_t row_h = content_h / row_cnt;
if (row_h <= 0) return;
// 计算行号
int16_t row = rel_y / row_h;
if (row >= 0 && row < row_cnt) {
g_selected_row = row;
lv_obj_invalidate(table);
//rt_kprintf("row: %d", row);
}
}
// 初始化样式
void table_style_init(lv_obj_t *container)
{
//guider_ui.screen_list_inf = lv_table_create(guider_ui.screen_inf_list);
lv_obj_add_event_cb(container, table_style_cb, LV_EVENT_DRAW_PART_BEGIN, NULL);
lv_obj_add_event_cb(container, table_click_event_cb, LV_EVENT_CLICKED, NULL);
lv_obj_set_pos(container, 0, 0);
lv_obj_set_scrollbar_mode(container, LV_SCROLLBAR_MODE_OFF);
//Write style for screen_list_inf, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_pad_top(container, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(container, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(container, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(container, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(container, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(container, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_grad_dir(container, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_border_width(container, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_radius(container, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(container, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
//Write style for screen_list_inf, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT.
lv_obj_set_style_text_color(container, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(container, &lv_font_simsun_24, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(container, 255, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(container, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(container, 0, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_width(container, 3, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_opa(container, 255, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_color(container, lv_color_hex(0xd5dee6), LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_side(container, LV_BORDER_SIDE_FULL, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(container, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(container, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(container, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(container, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(container, lv_color_hex(0xFFFFFF), LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_text_font(container, &lv_font_simsun_14, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_text_opa(container, 255, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_text_align(container, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_bg_opa(container, 255, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_bg_color(container, lv_color_hex(0x007185), LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_border_width(container, 0, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_border_opa(container, 0, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_pad_top(container, 10, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_pad_bottom(container, 10, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_pad_left(container, 10, LV_PART_ITEMS|LV_STATE_CHECKED);
lv_obj_set_style_pad_right(container, 10, LV_PART_ITEMS|LV_STATE_CHECKED);
}
void custom_init(lv_ui *ui) void custom_init(lv_ui *ui)
{ {
@ -52,6 +190,11 @@ void custom_init(lv_ui *ui)
lv_obj_set_scroll_dir(ui->screen_w_io_tab_3, LV_DIR_NONE); lv_obj_set_scroll_dir(ui->screen_w_io_tab_3, LV_DIR_NONE);
lv_obj_set_style_pad_all(ui->screen_w_io_tab_4, 0, LV_PART_MAIN); lv_obj_set_style_pad_all(ui->screen_w_io_tab_4, 0, LV_PART_MAIN);
lv_obj_set_scroll_dir(ui->screen_w_io_tab_4, LV_DIR_NONE); lv_obj_set_scroll_dir(ui->screen_w_io_tab_4, LV_DIR_NONE);
//table_style_init();
guider_ui.screen_list_inf = lv_table_create(guider_ui.screen_inf_list);
table_style_init(guider_ui.screen_list_inf);
/* Add your codes here */ /* Add your codes here */
} }

1
applications/lvgl/guider/custom/custom.h

@ -15,6 +15,7 @@ extern "C" {
#include "guider/generated/gui_guider.h" #include "guider/generated/gui_guider.h"
extern int16_t g_selected_row;
void custom_init(lv_ui *ui); void custom_init(lv_ui *ui);
#ifdef __cplusplus #ifdef __cplusplus

1
applications/lvgl/guider/generated/events_init.c

@ -15,6 +15,7 @@
#include "freemaster_client.h" #include "freemaster_client.h"
#endif #endif
#include <ui_data_labels.h>
#include "INI/config.h" #include "INI/config.h"
#include "data/Variable.h" #include "data/Variable.h"

8
applications/lvgl/guider/generated/gui_guider.h

@ -52,7 +52,6 @@ typedef struct
lv_obj_t *screen_step_list; lv_obj_t *screen_step_list;
lv_obj_t *screen_w_list; lv_obj_t *screen_w_list;
lv_obj_t *screen_inf_list; lv_obj_t *screen_inf_list;
lv_obj_t *screen_list_inf;
lv_obj_t *screen_cont_p; lv_obj_t *screen_cont_p;
lv_obj_t *screen_table_1; lv_obj_t *screen_table_1;
lv_obj_t *screen_chart_temp; lv_obj_t *screen_chart_temp;
@ -451,6 +450,7 @@ typedef struct
lv_obj_t *screen_sys_save; lv_obj_t *screen_sys_save;
lv_obj_t *screen_sys_save_label; lv_obj_t *screen_sys_save_label;
lv_obj_t *g_kb_top_layer; lv_obj_t *g_kb_top_layer;
lv_obj_t *screen_list_inf;
}lv_ui; }lv_ui;
typedef void (*ui_setup_scr_t)(lv_ui * ui); typedef void (*ui_setup_scr_t)(lv_ui * ui);
@ -484,16 +484,12 @@ LV_IMG_DECLARE(_IconParkBytedanceMiniApp_alpha_40x40);
LV_IMG_DECLARE(_ico_link_alpha_40x40); LV_IMG_DECLARE(_ico_link_alpha_40x40);
LV_IMG_DECLARE(_IconParkPlay_alpha_40x40); LV_IMG_DECLARE(_IconParkPlay_alpha_40x40);
LV_FONT_DECLARE(lv_font_simsun_28)
LV_FONT_DECLARE(lv_font_simsun_30) LV_FONT_DECLARE(lv_font_simsun_30)
LV_FONT_DECLARE(lv_font_simsun_16) LV_FONT_DECLARE(lv_font_simsun_16)
LV_FONT_DECLARE(lv_font_simsun_24) LV_FONT_DECLARE(lv_font_simsun_24)
LV_FONT_DECLARE(lv_font_simsun_12)
LV_FONT_DECLARE(lv_font_montserratMedium_12)
LV_FONT_DECLARE(lv_font_Alatsi_Regular_18)
LV_FONT_DECLARE(lv_font_simsun_14) LV_FONT_DECLARE(lv_font_simsun_14)
LV_FONT_DECLARE(lv_font_simsun_26) LV_FONT_DECLARE(lv_font_simsun_26)
LV_FONT_DECLARE(lv_font_simsun_32) LV_FONT_DECLARE(lv_font_simsun_28)
LV_FONT_DECLARE(lv_font_simsun_18) LV_FONT_DECLARE(lv_font_simsun_18)

2583
applications/lvgl/guider/generated/guider_fonts/lv_font_Alatsi_Regular_18.c

File diff suppressed because it is too large

1919
applications/lvgl/guider/generated/guider_fonts/lv_font_montserratMedium_12.c

File diff suppressed because it is too large

1523
applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_12.c

File diff suppressed because it is too large

465
applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_16.c

@ -671,312 +671,6 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x4, 0x95, 0x0, 0x0, 0x5, 0xb, 0x30, 0x4, 0x4, 0x95, 0x0, 0x0, 0x5, 0xb, 0x30, 0x4,
0x30, 0x1, 0xc1, 0x41, 0x0, 0x0, 0x3a, 0x50, 0x30, 0x1, 0xc1, 0x41, 0x0, 0x0, 0x3a, 0x50,
/* U+505C "停" */
0x0, 0x0, 0xf0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0xff, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xff, 0x0, 0xf, 0x0, 0x0, 0xf0, 0x0,
0xf, 0xf, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0xf, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
/* U+50A8 "储" */
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0xf0, 0xf, 0x0,
0x0, 0xf, 0xf, 0xf, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf0, 0xf, 0x0, 0x0, 0xf0, 0xf, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0xf0, 0xf0, 0x0,
0xf, 0xf, 0xff, 0xf, 0xff, 0xff, 0xff, 0xf0,
0xf0, 0xf0, 0xf, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0xf0, 0xf, 0xf, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf0, 0xf, 0xf0, 0xf0, 0x0, 0xf, 0x0,
0x0, 0xf0, 0xf, 0x0, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf0, 0xf, 0x0, 0xf0, 0x0, 0xf, 0x0,
0x0, 0xf0, 0xf, 0xf, 0xf0, 0x0, 0xf, 0x0,
0x0, 0xf0, 0xff, 0xf0, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf0, 0xf, 0x0, 0xf0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+5165 "入" */
0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0,
0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+5220 "删" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0x0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0xf, 0x0, 0xf0, 0xf0, 0xf0, 0xf, 0x0, 0xf0,
0xf, 0x0, 0xf0, 0xf0, 0xf0, 0x0, 0x0, 0xf0,
0xf0, 0xff, 0xf0, 0xf0, 0xf0, 0x0, 0x0, 0xf0,
0xf0, 0xf, 0xf, 0xf, 0xf0, 0x0, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
/* U+542F "启" */
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0xf, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0xf0, 0xf, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0xf0, 0xf, 0x0, 0x0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0,
0xf0, 0x0, 0xf, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+5B58 "存" */
0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0xff, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0xf, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0xf, 0xf, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
/* U+5DE5 "工" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+6392 "排" */
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0xff, 0xff, 0xf0, 0xff, 0x0, 0xff, 0xff, 0xf0,
0x0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xf, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xf, 0xff, 0x0, 0xff, 0xff, 0x0,
0x0, 0xff, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0xff, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0x0, 0xff, 0xff, 0xf0,
0x0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0xf, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
/* U+63D2 "插" */
0x0, 0xf, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0,
0x0, 0xf, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0xff, 0xff, 0xff, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xf, 0x0, 0xf0, 0xf0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0xff, 0x0, 0xf0, 0xff, 0xf0,
0x0, 0xff, 0x0, 0xf0, 0x0, 0xf0, 0x0, 0xf0,
0xff, 0xf, 0x0, 0xf0, 0x0, 0xf0, 0x0, 0xf0,
0x0, 0xf, 0x0, 0xff, 0xf0, 0xf0, 0xff, 0xf0,
0x0, 0xf, 0x0, 0xf0, 0x0, 0xf0, 0x0, 0xf0,
0x0, 0xf, 0x0, 0xf0, 0x0, 0xf0, 0x0, 0xf0,
0x0, 0xf, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xf, 0x0, 0xf0, 0x0, 0x0, 0x0, 0xf0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+660E "明" */
0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0x0,
0xf, 0xff, 0xff, 0x0, 0xf0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf, 0x0, 0xff, 0xff, 0xff, 0x0,
0xf, 0xff, 0xff, 0x0, 0xf0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf, 0x0, 0xff, 0xff, 0xff, 0x0,
0xf, 0xff, 0xff, 0x0, 0xf0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0xf, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
/* U+7A0B "程" */
0x0, 0x0, 0xff, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xf, 0xff, 0x0, 0xf, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0xf0, 0x0,
0xff, 0xff, 0xff, 0xf, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x0,
0xf, 0xf, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0xf, 0xf, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0xf0, 0xf, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+7EC6 "细" */
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0,
0xf, 0x0, 0xf, 0xf, 0x0, 0xf0, 0xf, 0x0,
0xff, 0xff, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0,
0x0, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0xf, 0x0,
0x0, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0,
0xf, 0xff, 0xff, 0xf, 0x0, 0xf0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0xf0, 0xf, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0xf0, 0xf, 0x0,
0x0, 0xf, 0xff, 0xf, 0x0, 0xf0, 0xf, 0x0,
0xff, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+7F16 "编" */
0x0, 0xf, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0xf, 0xf0, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf0, 0x0, 0xf0, 0x0, 0x0, 0xf, 0x0,
0xf, 0x0, 0xf0, 0xf0, 0x0, 0x0, 0xf, 0x0,
0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0xf, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0,
0xf, 0xff, 0xf0, 0xff, 0xf, 0xf, 0xf, 0x0,
0x0, 0x0, 0x0, 0xff, 0xf, 0xf, 0xf, 0x0,
0x0, 0x0, 0xf, 0xf, 0xff, 0xff, 0xff, 0x0,
0x0, 0xff, 0xf, 0xf, 0xf, 0xf, 0xf, 0x0,
0xff, 0x0, 0xf, 0xf, 0xf, 0xf, 0xf, 0x0,
0x0, 0x0, 0xf0, 0xf, 0xf, 0xf, 0xf, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+827A "艺" */
0x0, 0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0,
0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+8F7D "载" */
0x0, 0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x0, 0xf, 0xf, 0x0, 0x0,
0x0, 0xff, 0xff, 0xff, 0xf, 0x0, 0xf0, 0x0,
0x0, 0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0x0,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0,
0x0, 0x0, 0xf0, 0x0, 0xf, 0x0, 0x0, 0x0,
0xf, 0xff, 0xff, 0xff, 0xf, 0x0, 0xf, 0x0,
0x0, 0xf, 0x0, 0x0, 0xf, 0x0, 0xf, 0x0,
0x0, 0xf0, 0xf, 0x0, 0x0, 0xf0, 0xf0, 0x0,
0xf, 0xff, 0xff, 0xff, 0x0, 0xf0, 0xf0, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0xff, 0x0, 0x0,
0x0, 0x0, 0xf, 0xff, 0x0, 0xff, 0x0, 0x0,
0xf, 0xff, 0xff, 0x0, 0xf, 0xf, 0x0, 0xf0,
0x0, 0x0, 0xf, 0x0, 0xf0, 0x0, 0xf0, 0xf0,
0x0, 0x0, 0xf, 0xf, 0x0, 0x0, 0xf, 0x0,
0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+8F91 "辑" */
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xff, 0xff, 0xf, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf0, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf, 0xf, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0,
0xf, 0xf, 0x0, 0xf, 0x0, 0x0, 0xf0, 0x0,
0xff, 0xff, 0xff, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xf, 0x0, 0xf, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf, 0x0, 0xf, 0xff, 0xff, 0xf0, 0x0,
0x0, 0xff, 0xff, 0xf, 0x0, 0x0, 0xf0, 0x0,
0xff, 0xf, 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0,
0x0, 0xf, 0xf, 0xff, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
0x0, 0xf, 0x0, 0x0, 0x0, 0x0, 0xf0, 0x0,
/* U+9664 "除" */
0x0, 0x0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xff, 0xff, 0xf0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0xf0, 0xf, 0xf, 0x0, 0x0, 0x0,
0xf0, 0xf, 0x0, 0xf, 0x0, 0xf0, 0x0, 0x0,
0xf0, 0xf0, 0x0, 0xf0, 0x0, 0xf, 0x0, 0x0,
0xf0, 0xf0, 0xf, 0xff, 0xff, 0xf0, 0xff, 0x0,
0xf0, 0xf, 0xf0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xf0, 0xf, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xf0, 0xf, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0,
0xff, 0xf, 0x0, 0x0, 0xf0, 0x0, 0x0, 0x0,
0xf0, 0xf0, 0x0, 0xf0, 0xf0, 0xf0, 0x0, 0x0,
0xf0, 0x0, 0x0, 0xf0, 0xf0, 0xf, 0x0, 0x0,
0xf0, 0x0, 0xf, 0x0, 0xf0, 0x0, 0xff, 0x0,
0xf0, 0x0, 0xf0, 0x0, 0xf0, 0x0, 0xf, 0x0,
0xf0, 0xf, 0x0, 0xf0, 0xf0, 0x0, 0x0, 0x0,
0xf0, 0x0, 0x0, 0xf, 0x0, 0x0, 0x0, 0x0,
/* U+F001 "" */ /* U+F001 "" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xdc,
@ -2022,83 +1716,66 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
{.bitmap_index = 3469, .adv_w = 128, .box_w = 2, .box_h = 18, .ofs_x = 3, .ofs_y = -2}, {.bitmap_index = 3469, .adv_w = 128, .box_w = 2, .box_h = 18, .ofs_x = 3, .ofs_y = -2},
{.bitmap_index = 3487, .adv_w = 128, .box_w = 4, .box_h = 16, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 3487, .adv_w = 128, .box_w = 4, .box_h = 16, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 3519, .adv_w = 128, .box_w = 8, .box_h = 4, .ofs_x = 0, .ofs_y = 11}, {.bitmap_index = 3519, .adv_w = 128, .box_w = 8, .box_h = 4, .ofs_x = 0, .ofs_y = 11},
{.bitmap_index = 3535, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 3535, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 3663, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 3671, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 3791, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 3767, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 3919, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 3879, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 4047, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 3975, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 4175, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4041, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 4303, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4169, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 4431, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4297, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 4559, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4423, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 4687, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4551, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 4815, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4659, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 4943, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4787, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 5071, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4843, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 5199, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 4927, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 5327, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 5071, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 5455, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 5167, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 5583, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 5255, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2},
{.bitmap_index = 5711, .adv_w = 256, .box_w = 16, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 5335, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 5847, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 5461, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 5943, .adv_w = 256, .box_w = 16, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 5566, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 6055, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 5664, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2},
{.bitmap_index = 6151, .adv_w = 176, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 5744, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1},
{.bitmap_index = 6217, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 5856, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 6345, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 5926, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 6473, .adv_w = 288, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 5996, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 6599, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6094, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4},
{.bitmap_index = 6727, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 6122, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 6835, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6230, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 6963, .adv_w = 128, .box_w = 8, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 6390, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2},
{.bitmap_index = 7019, .adv_w = 192, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 6550, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 7103, .adv_w = 288, .box_w = 18, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6678, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 7247, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 6748, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 7343, .adv_w = 176, .box_w = 11, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6818, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 7431, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, {.bitmap_index = 6958, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 7511, .adv_w = 224, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 7054, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 7637, .adv_w = 224, .box_w = 14, .box_h = 15, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7182, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2},
{.bitmap_index = 7742, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7327, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 7840, .adv_w = 224, .box_w = 10, .box_h = 16, .ofs_x = 2, .ofs_y = -2}, {.bitmap_index = 7432, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 7920, .adv_w = 224, .box_w = 16, .box_h = 14, .ofs_x = -1, .ofs_y = -1}, {.bitmap_index = 7544, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 8032, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7642, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 8102, .adv_w = 160, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7740, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 8172, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 7836, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2},
{.bitmap_index = 8270, .adv_w = 224, .box_w = 14, .box_h = 4, .ofs_x = 0, .ofs_y = 4}, {.bitmap_index = 7932, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 8298, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 8044, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 8406, .adv_w = 320, .box_w = 20, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8156, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 8566, .adv_w = 288, .box_w = 20, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, {.bitmap_index = 8264, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 8726, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8426, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 8854, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, {.bitmap_index = 8522, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 8924, .adv_w = 224, .box_w = 14, .box_h = 10, .ofs_x = 0, .ofs_y = 1}, {.bitmap_index = 8672, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 8994, .adv_w = 320, .box_w = 20, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 8772, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 9134, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 8872, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 9230, .adv_w = 256, .box_w = 16, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 8972, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 9358, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -2}, {.bitmap_index = 9072, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 9503, .adv_w = 224, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9172, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 9608, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 9319, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 9720, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9415, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 9818, .adv_w = 224, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 9527, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 9916, .adv_w = 256, .box_w = 16, .box_h = 12, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 9672, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 10012, .adv_w = 160, .box_w = 12, .box_h = 16, .ofs_x = -1, .ofs_y = -2}, {.bitmap_index = 9792, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 10108, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 9888, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1}
{.bitmap_index = 10220, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 10332, .adv_w = 288, .box_w = 18, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 10440, .adv_w = 256, .box_w = 18, .box_h = 18, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 10602, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 10698, .adv_w = 320, .box_w = 20, .box_h = 15, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 10848, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 10948, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 11048, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 11148, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 11248, .adv_w = 320, .box_w = 20, .box_h = 10, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 11348, .adv_w = 320, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 11495, .adv_w = 224, .box_w = 12, .box_h = 16, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 11591, .adv_w = 224, .box_w = 14, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 11703, .adv_w = 256, .box_w = 17, .box_h = 17, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 11848, .adv_w = 320, .box_w = 20, .box_h = 12, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 11968, .adv_w = 192, .box_w = 12, .box_h = 16, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 12064, .adv_w = 258, .box_w = 17, .box_h = 11, .ofs_x = 0, .ofs_y = 1}
}; };
/*--------------------- /*---------------------
@ -2106,16 +1783,14 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
*--------------------*/ *--------------------*/
static const uint16_t unicode_list_1[] = { static const uint16_t unicode_list_1[] = {
0x0, 0x4c, 0x109, 0x1c4, 0x3d3, 0xafc, 0xd89, 0x1336, 0x0, 0x7, 0xa, 0xb, 0xc, 0x10, 0x12, 0x14,
0x1376, 0x15b2, 0x29af, 0x2e6a, 0x2eba, 0x321e, 0x3f21, 0x3f35, 0x18, 0x1b, 0x20, 0x25, 0x26, 0x27, 0x3d, 0x42,
0x4608, 0x9fa5, 0x9fac, 0x9faf, 0x9fb0, 0x9fb1, 0x9fb5, 0x9fb7, 0x47, 0x4a, 0x4b, 0x4c, 0x50, 0x51, 0x52, 0x53,
0x9fb9, 0x9fbd, 0x9fc0, 0x9fc5, 0x9fca, 0x9fcb, 0x9fcc, 0x9fe2, 0x66, 0x67, 0x6d, 0x6f, 0x70, 0x73, 0x76, 0x77,
0x9fe7, 0x9fec, 0x9fef, 0x9ff0, 0x9ff1, 0x9ff5, 0x9ff6, 0x9ff7, 0x78, 0x7a, 0x92, 0x94, 0xc3, 0xc4, 0xc6, 0xc8,
0x9ff8, 0xa00b, 0xa00c, 0xa012, 0xa014, 0xa015, 0xa018, 0xa01b, 0xdf, 0xe6, 0xe9, 0xf2, 0x11b, 0x123, 0x15a, 0x1ea,
0xa01c, 0xa01d, 0xa01f, 0xa037, 0xa039, 0xa068, 0xa069, 0xa06b, 0x23f, 0x240, 0x241, 0x242, 0x243, 0x286, 0x292, 0x2ec,
0xa06d, 0xa084, 0xa08b, 0xa08e, 0xa097, 0xa0c0, 0xa0c8, 0xa0ff, 0x303, 0x559, 0x7c1, 0x8a1
0xa18f, 0xa1e4, 0xa1e5, 0xa1e6, 0xa1e7, 0xa1e8, 0xa22b, 0xa237,
0xa291, 0xa2a8, 0xa4fe, 0xa766, 0xa846
}; };
/*Collect the unicode lists and glyph_id offsets*/ /*Collect the unicode lists and glyph_id offsets*/
@ -2126,8 +1801,8 @@ static const lv_font_fmt_txt_cmap_t cmaps[] =
.unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY
}, },
{ {
.range_start = 20572, .range_length = 43079, .glyph_id_start = 96, .range_start = 61441, .range_length = 2210, .glyph_id_start = 96,
.unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 77, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 60, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
} }
}; };

780
applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_24.c

@ -1204,6 +1204,183 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0,
0x0, 0x0,
/* U+4FE1 "信" */
0x0, 0x0, 0x0, 0x22, 0x0, 0x0, 0x6, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f,
0x40, 0x0, 0x6, 0xc1, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xdc, 0x0, 0x0, 0x0, 0xdd,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf4,
0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x19, 0x0,
0x0, 0x0, 0x9, 0xd1, 0x88, 0x77, 0x77, 0x9b,
0x77, 0x77, 0xbe, 0xa0, 0x0, 0x0, 0xf, 0x60,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xee, 0x40,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x50, 0x0,
0x0, 0x7, 0xff, 0x0, 0x7, 0x97, 0x77, 0x77,
0x77, 0x77, 0x70, 0x0, 0x0, 0x1e, 0x7e, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xa5, 0x4e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x7, 0x0, 0x0, 0x5, 0x70, 0x4e, 0x0,
0x8, 0x87, 0x77, 0x77, 0x77, 0x9b, 0x70, 0x0,
0x6, 0x0, 0x4e, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0x0,
0x0, 0x10, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0,
0x0, 0x0, 0x4e, 0x0, 0x0, 0xd8, 0x77, 0x77,
0x77, 0x9f, 0x40, 0x0, 0x0, 0x0, 0x4e, 0x0,
0x0, 0xe6, 0x0, 0x0, 0x0, 0x4f, 0x0, 0x0,
0x0, 0x0, 0x4e, 0x0, 0x0, 0xd6, 0x0, 0x0,
0x0, 0x4e, 0x0, 0x0, 0x0, 0x0, 0x4e, 0x0,
0x0, 0xd6, 0x0, 0x0, 0x0, 0x4e, 0x0, 0x0,
0x0, 0x0, 0x4e, 0x0, 0x0, 0xd6, 0x0, 0x0,
0x0, 0x4e, 0x0, 0x0, 0x0, 0x0, 0x4e, 0x0,
0x0, 0xda, 0x77, 0x77, 0x77, 0xae, 0x0, 0x0,
0x0, 0x0, 0x5e, 0x0, 0x0, 0xe6, 0x0, 0x0,
0x0, 0x4f, 0x0, 0x0, 0x0, 0x0, 0x5e, 0x0,
0x0, 0xe6, 0x0, 0x0, 0x0, 0x4c, 0x0, 0x0,
0x0, 0x0, 0x22, 0x0, 0x0, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+505C "停" */
0x0, 0x0, 0x3, 0x20, 0x0, 0x0, 0x43, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0x30,
0x0, 0x0, 0xe9, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0xb0, 0x0, 0x0, 0x5, 0xf1, 0x0,
0x0, 0x40, 0x0, 0x0, 0x3, 0xf3, 0x57, 0x77,
0x77, 0x8e, 0x77, 0x77, 0x8f, 0xc0, 0x0, 0x0,
0x8c, 0x1, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe, 0x60, 0x0, 0x7, 0x0,
0x0, 0x0, 0x18, 0x0, 0x0, 0x0, 0x4, 0xf2,
0x0, 0x0, 0xfa, 0x77, 0x77, 0x7a, 0xf2, 0x0,
0x0, 0x0, 0xbf, 0x90, 0x0, 0xe, 0x40, 0x0,
0x0, 0x4e, 0x0, 0x0, 0x0, 0x2e, 0xf4, 0x0,
0x0, 0xea, 0x77, 0x77, 0x7a, 0xf0, 0x0, 0x0,
0xa, 0x5e, 0x40, 0x0, 0xf, 0x40, 0x0, 0x0,
0x4e, 0x0, 0x0, 0x3, 0x90, 0xe4, 0x2, 0x20,
0x10, 0x0, 0x0, 0x1, 0x0, 0x4, 0x0, 0x90,
0xe, 0x40, 0x79, 0x77, 0x77, 0x77, 0x77, 0x77,
0x7b, 0xf4, 0x0, 0x0, 0xe4, 0xd, 0x40, 0x0,
0x0, 0x0, 0x0, 0x0, 0xa4, 0x0, 0x0, 0xe,
0x45, 0xf2, 0x0, 0x0, 0x0, 0x0, 0x1, 0x91,
0x0, 0x0, 0x0, 0xe4, 0x34, 0x49, 0x77, 0x77,
0x98, 0x77, 0xad, 0x70, 0x0, 0x0, 0xe, 0x40,
0x0, 0x0, 0x0, 0xe, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0xe4, 0x0, 0x0, 0x0, 0x0, 0xe4,
0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x40, 0x0,
0x0, 0x0, 0xe, 0x40, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe4, 0x0, 0x0, 0x0, 0x0, 0xe4, 0x0,
0x0, 0x0, 0x0, 0x0, 0xe, 0x40, 0x0, 0x0,
0x0, 0xf, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
0xf4, 0x0, 0x0, 0x29, 0x99, 0xf2, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf, 0x40, 0x0, 0x0, 0x9,
0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30,
0x0, 0x0, 0x0, 0x7, 0x10, 0x0, 0x0, 0x0,
0x0,
/* U+50A8 "储" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xb0,
0x0, 0x0, 0x0, 0x5e, 0x50, 0x0, 0x0, 0x0,
0x0, 0x0, 0xa, 0xf3, 0x0, 0x0, 0x0, 0x4f,
0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x70,
0x90, 0x0, 0x0, 0x4f, 0x0, 0x0, 0x91, 0x0,
0x0, 0x0, 0x6f, 0x10, 0x8b, 0x0, 0x0, 0x4f,
0x2b, 0x26, 0xfb, 0x0, 0x0, 0x0, 0xc9, 0x0,
0x3f, 0x40, 0x97, 0x9f, 0x77, 0x7e, 0xb0, 0x0,
0x0, 0x2, 0xf2, 0x0, 0xb, 0x0, 0x0, 0x4f,
0x0, 0xad, 0x0, 0x0, 0x0, 0xa, 0xf9, 0x0,
0x0, 0x0, 0x0, 0x4f, 0x6, 0xf2, 0x0, 0x0,
0x0, 0x1f, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x4f,
0x3f, 0x50, 0xb, 0x30, 0x0, 0x97, 0xd5, 0x0,
0x74, 0x3a, 0x87, 0x79, 0xfa, 0x77, 0x78, 0x70,
0x2, 0xb0, 0xd5, 0x87, 0xec, 0x0, 0x0, 0xb,
0x90, 0x0, 0x0, 0x0, 0x9, 0x10, 0xd5, 0x0,
0xd5, 0x0, 0x0, 0xb7, 0x0, 0x0, 0x0, 0x0,
0x2, 0x0, 0xd5, 0x0, 0xd5, 0x0, 0xe, 0xc7,
0x77, 0x78, 0xe3, 0x0, 0x0, 0x0, 0xd5, 0x0,
0xd5, 0x0, 0xbf, 0x40, 0x0, 0x4, 0xf2, 0x0,
0x0, 0x0, 0xd5, 0x0, 0xd5, 0x2a, 0x2e, 0x40,
0x0, 0x4, 0xe0, 0x0, 0x0, 0x0, 0xd5, 0x0,
0xd6, 0x60, 0xe, 0x40, 0x0, 0x4, 0xe0, 0x0,
0x0, 0x0, 0xd5, 0x0, 0xd5, 0x4, 0xe, 0xa7,
0x77, 0x7a, 0xe0, 0x0, 0x0, 0x0, 0xe5, 0x0,
0xe5, 0x86, 0xe, 0x40, 0x0, 0x4, 0xe0, 0x0,
0x0, 0x0, 0xe5, 0x0, 0xee, 0x80, 0xe, 0x40,
0x0, 0x4, 0xe0, 0x0, 0x0, 0x0, 0xe5, 0x1,
0xfc, 0x0, 0xe, 0x40, 0x0, 0x4, 0xe0, 0x0,
0x0, 0x0, 0xe6, 0x0, 0x52, 0x0, 0xe, 0xa7,
0x77, 0x7a, 0xf0, 0x0, 0x0, 0x0, 0xf6, 0x0,
0x0, 0x0, 0xf, 0x40, 0x0, 0x4, 0xf0, 0x0,
0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x6, 0x0,
0x0, 0x1, 0x20, 0x0,
/* U+5165 "入" */
0x0, 0x0, 0x0, 0x27, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0xe5,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x4d, 0x60, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xed,
0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe, 0x78, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5f, 0x13, 0xe0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9,
0x0, 0xd6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x4, 0xf1, 0x0, 0x6d, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0x70, 0x0, 0xe,
0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d,
0x0, 0x0, 0x5, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2, 0xf4, 0x0, 0x0, 0x0, 0xbd, 0x0,
0x0, 0x0, 0x0, 0x0, 0xd, 0x80, 0x0, 0x0,
0x0, 0x1e, 0xb0, 0x0, 0x0, 0x0, 0x0, 0xaa,
0x0, 0x0, 0x0, 0x0, 0x4, 0xfa, 0x0, 0x0,
0x0, 0x8, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x6f, 0xc3, 0x0, 0x0, 0x7a, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x8, 0xff, 0xa4, 0x7, 0x80,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f,
0xb5, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+5220 "删" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x21, 0x0, 0x0, 0x10, 0x0, 0x10,
0x10, 0x0, 0x10, 0x0, 0x0, 0x5, 0xf5, 0x0,
0x6, 0xb7, 0x8f, 0x46, 0xb7, 0x7f, 0x60, 0x0,
0x0, 0x5f, 0x0, 0x0, 0x6c, 0x3, 0xf0, 0x6c,
0x1, 0xf1, 0x0, 0x71, 0x4, 0xe0, 0x0, 0x5,
0xc0, 0x3e, 0x5, 0xc0, 0x1f, 0x0, 0xe, 0x80,
0x4e, 0x0, 0x0, 0x5c, 0x3, 0xe0, 0x5c, 0x1,
0xf0, 0x0, 0xe4, 0x4, 0xe0, 0x0, 0x5, 0xc0,
0x3e, 0x5, 0xc0, 0x1f, 0x0, 0xe, 0x40, 0x4e,
0x0, 0x0, 0x5c, 0x3, 0xe0, 0x5c, 0x1, 0xf0,
0x0, 0xd4, 0x4, 0xe0, 0x0, 0x5, 0xc0, 0x3e,
0x5, 0xc0, 0x1f, 0x0, 0xd, 0x40, 0x4e, 0x0,
0x0, 0x5c, 0x3, 0xe0, 0x5c, 0x1, 0xf2, 0x70,
0xd4, 0x4, 0xe0, 0x7, 0x9a, 0xd7, 0x9f, 0x7a,
0xd7, 0x8f, 0x99, 0x3d, 0x40, 0x4e, 0x0, 0x0,
0x6b, 0x3, 0xe0, 0x6b, 0x1, 0xf0, 0x0, 0xd4,
0x4, 0xe0, 0x0, 0x7, 0xa0, 0x3e, 0x7, 0xa0,
0x1f, 0x0, 0xd, 0x40, 0x4e, 0x0, 0x0, 0x98,
0x3, 0xe0, 0x79, 0x1, 0xf0, 0x0, 0xe4, 0x4,
0xe0, 0x0, 0xb, 0x60, 0x3e, 0x9, 0x80, 0x1f,
0x0, 0xe, 0x40, 0x4e, 0x0, 0x0, 0xe3, 0x3,
0xe0, 0xb5, 0x1, 0xf0, 0x0, 0xe5, 0x4, 0xe0,
0x0, 0xf, 0x0, 0x3e, 0xd, 0x30, 0x1f, 0x0,
0x9, 0x20, 0x4e, 0x0, 0x5, 0xb0, 0x3, 0xe1,
0xe0, 0x1, 0xf0, 0x0, 0x0, 0x4, 0xe0, 0x0,
0x94, 0x0, 0x4e, 0x5a, 0x0, 0x1f, 0x0, 0x0,
0x0, 0x4e, 0x0, 0xb, 0x6, 0xdf, 0xba, 0x30,
0x2, 0xf0, 0x0, 0x0, 0x6, 0xe0, 0x6, 0x40,
0x2, 0xc3, 0xb0, 0x6b, 0xee, 0x0, 0x7, 0xbc,
0xfb, 0x0, 0x70, 0x0, 0x0, 0x72, 0x0, 0x1e,
0x50, 0x0, 0x0, 0xbf, 0x30, 0x0, 0x0, 0x0,
0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10,
0x0,
/* U+529B "力" */ /* U+529B "力" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd,
@ -1433,6 +1610,37 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x4, 0xf2, 0x0, 0x0, 0x0, 0xa, 0x20, 0x0, 0x4, 0xf2, 0x0, 0x0, 0x0, 0xa, 0x20, 0x0,
0x0, 0x0, 0x1, 0x20, 0x0, 0x0, 0x1, 0x20,
/* U+542F "启" */
0x0, 0x0, 0x0, 0x0, 0x1, 0x40, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa9,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x2f, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x91, 0x0, 0x0, 0xa, 0x20, 0x0, 0x6, 0x30,
0x0, 0x0, 0xeb, 0x77, 0x77, 0x77, 0x77, 0x77,
0x7d, 0xe0, 0x0, 0x0, 0xe7, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0x90, 0x0, 0x0, 0xe7, 0x0,
0x0, 0x0, 0x0, 0x0, 0xb, 0x90, 0x0, 0x0,
0xd7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x90,
0x0, 0x0, 0xdb, 0x77, 0x77, 0x77, 0x77, 0x77,
0x7d, 0x90, 0x0, 0x0, 0xe6, 0x0, 0x0, 0x0,
0x0, 0x0, 0xb, 0xa0, 0x0, 0x0, 0xe5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x30, 0x0, 0x0,
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf3, 0xa, 0x20, 0x0, 0x0, 0x0,
0x9, 0x30, 0x0, 0x3, 0xf1, 0xd, 0xb7, 0x77,
0x77, 0x77, 0x7f, 0xb0, 0x0, 0x5, 0xe0, 0xd,
0x70, 0x0, 0x0, 0x0, 0xe, 0x60, 0x0, 0x8,
0xa0, 0xd, 0x70, 0x0, 0x0, 0x0, 0xe, 0x60,
0x0, 0xc, 0x50, 0xd, 0x70, 0x0, 0x0, 0x0,
0xe, 0x60, 0x0, 0x2e, 0x0, 0xd, 0x70, 0x0,
0x0, 0x0, 0xe, 0x60, 0x0, 0x96, 0x0, 0xd,
0x70, 0x0, 0x0, 0x0, 0xe, 0x60, 0x1, 0xb0,
0x0, 0xd, 0xb7, 0x77, 0x77, 0x77, 0x7f, 0x60,
0x9, 0x10, 0x0, 0xd, 0x70, 0x0, 0x0, 0x0,
0xe, 0x70, 0x43, 0x0, 0x0, 0xc, 0x30, 0x0,
0x0, 0x0, 0x9, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+5468 "周" */ /* U+5468 "周" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1e, 0x77, 0x77, 0x77, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x77, 0x77, 0x77,
@ -1532,6 +1740,42 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x90, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x90, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+5B58 "存" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x51, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0xd, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xf9, 0x0, 0x0, 0x0,
0x0, 0x60, 0x0, 0x7, 0x77, 0x77, 0x77, 0xbf,
0x87, 0x77, 0x77, 0x77, 0xaf, 0xc0, 0x0, 0x21,
0x0, 0x0, 0xe, 0x90, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xe8, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7d, 0x3a, 0x77, 0x77,
0x77, 0x7c, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xaf,
0x40, 0x0, 0x0, 0x0, 0x6, 0xf9, 0x40, 0x0,
0x0, 0x0, 0xf, 0xa0, 0x0, 0x0, 0x0, 0x5,
0xc2, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf6, 0x0,
0x0, 0x0, 0x48, 0x80, 0x0, 0x0, 0x0, 0x0,
0x4, 0xef, 0x60, 0x0, 0x0, 0x5, 0xf6, 0x0,
0x0, 0x0, 0x0, 0x1, 0xe4, 0xe6, 0x0, 0x0,
0x0, 0x5f, 0x0, 0x0, 0x0, 0x0, 0x1, 0xd4,
0xe, 0x60, 0x0, 0x0, 0x4, 0xf0, 0x0, 0x7,
0xd1, 0x1, 0xb3, 0x0, 0xe6, 0x2a, 0x87, 0x77,
0xaf, 0x77, 0x77, 0x77, 0x50, 0x81, 0x0, 0xe,
0x60, 0x0, 0x0, 0x4, 0xf0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0xe6, 0x0, 0x0, 0x0, 0x4f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x60,
0x0, 0x0, 0x4, 0xf0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf6, 0x0, 0x0, 0x0, 0x4f, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x60, 0x0,
0x0, 0x5, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0xf7, 0x0, 0x5, 0xbb, 0xef, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0xf, 0x50, 0x0, 0x0,
0x9f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0,
0x0,
/* U+5DE5 "工" */ /* U+5DE5 "工" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
@ -1705,6 +1949,76 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x20, 0x0, 0x0, 0x23, 0x0, 0x0, 0x2, 0x20, 0x20, 0x0, 0x0, 0x23, 0x0, 0x0, 0x2, 0x20,
0x0, 0x0,
/* U+606F "息" */
0x0, 0x0, 0x0, 0x0, 0x4, 0x30, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x12, 0x0, 0xd, 0x10, 0x0, 0x0, 0x62, 0x0,
0x0, 0x0, 0x0, 0x2f, 0x87, 0x89, 0x77, 0x77,
0x77, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x2f, 0x30,
0x0, 0x0, 0x0, 0x0, 0xe8, 0x0, 0x0, 0x0,
0x0, 0x1f, 0x30, 0x0, 0x0, 0x0, 0x0, 0xe7,
0x0, 0x0, 0x0, 0x0, 0x1f, 0x97, 0x77, 0x77,
0x77, 0x77, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x1f,
0x30, 0x0, 0x0, 0x0, 0x0, 0xe7, 0x0, 0x0,
0x0, 0x0, 0x1f, 0x30, 0x0, 0x0, 0x0, 0x0,
0xe7, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x30, 0x0,
0x0, 0x0, 0x0, 0xe7, 0x0, 0x0, 0x0, 0x0,
0x1f, 0x97, 0x77, 0x77, 0x77, 0x77, 0xf7, 0x0,
0x0, 0x0, 0x0, 0x1f, 0x30, 0x0, 0x0, 0x0,
0x0, 0xe7, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x30,
0x0, 0x0, 0x0, 0x0, 0xe8, 0x0, 0x0, 0x0,
0x0, 0x2f, 0x97, 0x77, 0x77, 0x77, 0x77, 0xf8,
0x0, 0x0, 0x0, 0x0, 0x2e, 0x20, 0x0, 0x81,
0x0, 0x0, 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x99, 0x10, 0x6e, 0x20, 0x0, 0x4, 0x40, 0x0,
0x0, 0x4, 0x0, 0xad, 0x0, 0xd, 0xd0, 0x0,
0x0, 0xb9, 0x0, 0x0, 0xa, 0x0, 0x9b, 0x0,
0x7, 0xf1, 0x2, 0x40, 0x2f, 0xa0, 0x0, 0x7a,
0x0, 0x9b, 0x0, 0x1, 0x60, 0x3, 0x60, 0x9,
0xf3, 0x5, 0xf7, 0x0, 0x9b, 0x0, 0x0, 0x0,
0x4, 0x90, 0x3, 0xf4, 0x1f, 0xf1, 0x0, 0x8e,
0x21, 0x11, 0x11, 0x29, 0xf4, 0x0, 0x40, 0x8,
0x30, 0x0, 0x2e, 0xff, 0xff, 0xff, 0xfe, 0x90,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0,
/* U+6392 "排" */
0x0, 0x0, 0x14, 0x0, 0x0, 0x0, 0x12, 0x0,
0x20, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf9, 0x0,
0x0, 0x1, 0xf8, 0xe, 0xb0, 0x0, 0x0, 0x0,
0x0, 0xf, 0x20, 0x0, 0x0, 0x1f, 0x30, 0xd7,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf2, 0x0, 0x0,
0x1, 0xf2, 0xd, 0x60, 0x0, 0x0, 0x0, 0x0,
0xf, 0x20, 0x0, 0x0, 0x1f, 0x20, 0xd6, 0x0,
0x2, 0x0, 0x0, 0x0, 0xf3, 0x87, 0x88, 0x78,
0xf2, 0xd, 0xa7, 0x7b, 0xe2, 0x7, 0x87, 0x7f,
0x97, 0x71, 0x0, 0xf, 0x20, 0xd6, 0x0, 0x0,
0x0, 0x0, 0x0, 0xf2, 0x0, 0x0, 0x0, 0xf2,
0xd, 0x60, 0x0, 0x0, 0x0, 0x0, 0xf, 0x20,
0x0, 0x0, 0xf, 0x20, 0xd6, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf2, 0x16, 0x0, 0x0, 0xf2, 0xd,
0x60, 0x6, 0x20, 0x0, 0x0, 0xf, 0xb9, 0x13,
0x97, 0x8f, 0x20, 0xda, 0x77, 0xba, 0x0, 0x0,
0x6c, 0xf4, 0x0, 0x0, 0x0, 0xf2, 0xd, 0x60,
0x0, 0x0, 0x9, 0xfe, 0x5f, 0x20, 0x0, 0x0,
0xf, 0x20, 0xd6, 0x0, 0x0, 0x0, 0x6c, 0x10,
0xf2, 0x0, 0x0, 0x0, 0xf2, 0xd, 0x60, 0x0,
0x0, 0x0, 0x0, 0xf, 0x20, 0x0, 0x0, 0xf,
0x20, 0xd6, 0x0, 0x39, 0x0, 0x0, 0x0, 0xf2,
0x8, 0x87, 0x78, 0xf2, 0xd, 0xa7, 0x79, 0x94,
0x0, 0x0, 0xf, 0x20, 0x0, 0x0, 0x1f, 0x20,
0xd6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf2, 0x0,
0x0, 0x1, 0xf2, 0xd, 0x60, 0x0, 0x0, 0x0,
0x0, 0xf, 0x20, 0x0, 0x0, 0x1f, 0x20, 0xd6,
0x0, 0x0, 0x0, 0x1, 0x2, 0xf2, 0x0, 0x0,
0x1, 0xf2, 0xd, 0x60, 0x0, 0x0, 0x0, 0x7e,
0xfe, 0x0, 0x0, 0x0, 0x1f, 0x20, 0xd7, 0x0,
0x0, 0x0, 0x0, 0x1d, 0x40, 0x0, 0x0, 0x2,
0xe1, 0xc, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+63D0 "提" */ /* U+63D0 "提" */
0x0, 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf7, 0x0,
@ -1741,6 +2055,42 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+63D2 "插" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xd5, 0x0,
0x0, 0x0, 0x0, 0x0, 0x1, 0x60, 0x0, 0x0,
0x0, 0x2f, 0x40, 0x0, 0x0, 0x0, 0x4, 0x7c,
0xff, 0x80, 0x0, 0x0, 0x2, 0xf1, 0x0, 0x26,
0x79, 0xac, 0xf7, 0x53, 0x21, 0x0, 0x0, 0x0,
0x2f, 0x10, 0x0, 0x0, 0x0, 0x4e, 0x0, 0x0,
0x0, 0x0, 0x0, 0x2, 0xf1, 0x60, 0x0, 0x0,
0x4, 0xe0, 0x0, 0x0, 0x0, 0x8, 0x87, 0x8f,
0x9b, 0x60, 0x0, 0x0, 0x4e, 0x0, 0x0, 0x2c,
0x10, 0x0, 0x1, 0xf1, 0x3, 0x97, 0x77, 0x79,
0xf7, 0x77, 0x77, 0x75, 0x0, 0x0, 0x1f, 0x10,
0x0, 0x0, 0x0, 0x4e, 0x0, 0x0, 0x0, 0x0,
0x0, 0x1, 0xf1, 0x35, 0x0, 0xa, 0x84, 0xe0,
0x0, 0x4, 0x0, 0x0, 0x0, 0x1f, 0xa6, 0xa,
0x6d, 0xc9, 0x5e, 0x8, 0x87, 0xfb, 0x0, 0x0,
0x1a, 0xf3, 0x0, 0xd8, 0x0, 0x4, 0xe0, 0x0,
0xe, 0x60, 0x2, 0x9f, 0xaf, 0x10, 0xd, 0x60,
0x0, 0x4e, 0x0, 0x0, 0xe4, 0x0, 0xdf, 0x41,
0xf1, 0x0, 0xd6, 0x1, 0x4, 0xe0, 0x0, 0xe,
0x40, 0x3, 0x30, 0x1f, 0x10, 0xd, 0xa7, 0xea,
0x4e, 0x6, 0x87, 0xf4, 0x0, 0x0, 0x1, 0xf1,
0x0, 0xd6, 0x0, 0x4, 0xe0, 0x0, 0xe, 0x40,
0x0, 0x0, 0x1f, 0x10, 0xd, 0x60, 0x0, 0x4e,
0x0, 0x0, 0xe4, 0x0, 0x0, 0x1, 0xf1, 0x0,
0xd6, 0x0, 0x4, 0xe0, 0x0, 0xe, 0x40, 0x0,
0x0, 0x1f, 0x10, 0xd, 0x60, 0x0, 0x4e, 0x0,
0x0, 0xe4, 0x0, 0x0, 0x2, 0xf1, 0x0, 0xda,
0x77, 0x79, 0xf7, 0x77, 0x7f, 0x50, 0x4, 0xaa,
0xbf, 0x0, 0xd, 0x60, 0x0, 0x0, 0x0, 0x0,
0xe5, 0x0, 0x0, 0x9f, 0x90, 0x0, 0xd4, 0x0,
0x0, 0x0, 0x0, 0x9, 0x20, 0x0, 0x0, 0x30,
0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0,
/* U+6446 "摆" */ /* U+6446 "摆" */
0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf9, 0x0,
@ -1814,6 +2164,35 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0, 0x0,
0x0, 0x10, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0,
/* U+660E "明" */
0x0, 0x0, 0x0, 0x0, 0x4, 0x40, 0x0, 0x0,
0xa4, 0x3, 0x0, 0x0, 0x4, 0x0, 0x6f, 0x77,
0x77, 0x7f, 0xa0, 0xe9, 0x77, 0x7a, 0xf4, 0x6,
0xe0, 0x0, 0x0, 0xe4, 0xd, 0x60, 0x0, 0x5e,
0x0, 0x6e, 0x0, 0x0, 0xe, 0x40, 0xd6, 0x0,
0x5, 0xd0, 0x6, 0xe0, 0x0, 0x0, 0xe4, 0xd,
0x60, 0x0, 0x5d, 0x0, 0x6e, 0x0, 0x0, 0xe,
0x40, 0xd6, 0x0, 0x5, 0xd0, 0x6, 0xf7, 0x77,
0x77, 0xf4, 0xd, 0xa7, 0x77, 0xad, 0x0, 0x6e,
0x0, 0x0, 0xe, 0x40, 0xd6, 0x0, 0x5, 0xd0,
0x6, 0xe0, 0x0, 0x0, 0xe4, 0xd, 0x60, 0x0,
0x5d, 0x0, 0x6e, 0x0, 0x0, 0xe, 0x40, 0xd6,
0x0, 0x5, 0xd0, 0x7, 0xd0, 0x0, 0x0, 0xe4,
0xd, 0x60, 0x0, 0x5d, 0x0, 0x8d, 0x0, 0x0,
0xe, 0x40, 0xd6, 0x0, 0x5, 0xd0, 0x9, 0xd7,
0x77, 0x77, 0xf4, 0xd, 0xa7, 0x77, 0xae, 0x0,
0xb9, 0x0, 0x0, 0xe, 0x40, 0xe6, 0x0, 0x5,
0xc0, 0xd, 0x60, 0x0, 0x0, 0xe4, 0xc, 0x30,
0x0, 0x10, 0x3, 0xf1, 0x0, 0x0, 0xe, 0x40,
0x0, 0x0, 0x0, 0x0, 0xaa, 0x0, 0x0, 0x0,
0xe4, 0x0, 0x0, 0x0, 0x0, 0x4e, 0x20, 0x0,
0x0, 0xe, 0x40, 0x0, 0x0, 0x0, 0x2e, 0x40,
0x0, 0x0, 0x1, 0xf4, 0x0, 0x0, 0x0, 0x3c,
0x30, 0x0, 0x8, 0xde, 0xff, 0x20, 0x0, 0x0,
0x69, 0x10, 0x0, 0x0, 0x0, 0x8f, 0xa0, 0x0,
0x0, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x50,
0x0,
/* U+671F "期" */ /* U+671F "期" */
0x0, 0x1, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xd4, 0x0, 0x4e, 0x0, 0x0, 0x0, 0x0, 0x5, 0xd4, 0x0, 0x4e,
@ -2286,6 +2665,39 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+7EC6 "细" */
0x0, 0x0, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbd,
0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0,
0x0, 0x2f, 0x30, 0x0, 0x5c, 0x77, 0x77, 0x77,
0x7a, 0xf5, 0x0, 0xa, 0x80, 0x0, 0x45, 0xe0,
0x0, 0xe4, 0x0, 0x4f, 0x10, 0x2, 0xe0, 0x0,
0x5f, 0x9e, 0x0, 0xe, 0x40, 0x4, 0xe0, 0x0,
0xb4, 0x0, 0xd, 0xb5, 0xe0, 0x0, 0xe4, 0x0,
0x4e, 0x0, 0x7a, 0x0, 0x6, 0xd0, 0x4e, 0x0,
0xe, 0x40, 0x4, 0xe0, 0x2f, 0xcc, 0xb9, 0xf3,
0x4, 0xe0, 0x0, 0xe4, 0x0, 0x4e, 0x0, 0x86,
0x10, 0xb6, 0x0, 0x4e, 0x0, 0xe, 0x40, 0x4,
0xe0, 0x0, 0x0, 0x69, 0x0, 0x4, 0xe0, 0x0,
0xe4, 0x0, 0x4e, 0x0, 0x0, 0x3b, 0x0, 0x0,
0x4f, 0x77, 0x7f, 0xa7, 0x7a, 0xe0, 0x0, 0x3c,
0x10, 0x0, 0x4, 0xe0, 0x0, 0xe4, 0x0, 0x4e,
0x0, 0x6f, 0x87, 0x9a, 0x97, 0x5e, 0x0, 0xe,
0x40, 0x4, 0xe0, 0x2, 0xfe, 0x83, 0x0, 0x4,
0xe0, 0x0, 0xe4, 0x0, 0x4e, 0x0, 0x3, 0x10,
0x0, 0x0, 0x4e, 0x0, 0xe, 0x40, 0x4, 0xe0,
0x0, 0x0, 0x0, 0x0, 0x5, 0xe0, 0x0, 0xe4,
0x0, 0x4e, 0x0, 0x0, 0x0, 0x26, 0x84, 0x5e,
0x0, 0xe, 0x40, 0x4, 0xe0, 0x27, 0x9c, 0xe9,
0x30, 0x5, 0xe0, 0x0, 0xe4, 0x0, 0x4e, 0x2,
0xfd, 0x60, 0x0, 0x0, 0x5f, 0x77, 0x7b, 0x87,
0x7a, 0xe0, 0x4, 0x0, 0x0, 0x0, 0x5, 0xe0,
0x0, 0x0, 0x0, 0x4f, 0x0, 0x0, 0x0, 0x0,
0x0, 0x6b, 0x0, 0x0, 0x0, 0x4, 0xb0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0,
/* U+7EDF "统" */ /* U+7EDF "统" */
0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x20, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xa0, 0x0,
@ -2320,6 +2732,40 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0xff, 0xe5, 0x0, 0x0, 0x0, 0x50, 0x0, 0x0, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x50, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
/* U+7F16 "编" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x81, 0x0, 0x0,
0x0, 0xb, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x2,
0xf9, 0x0, 0x0, 0x0, 0x1, 0xf5, 0x0, 0x0,
0x0, 0x0, 0x8, 0xd0, 0x0, 0x34, 0x0, 0x0,
0x40, 0x0, 0x28, 0x0, 0x0, 0x1e, 0x30, 0x0,
0x4f, 0x77, 0x77, 0x77, 0x77, 0xaf, 0x30, 0x0,
0x88, 0x0, 0x51, 0x4f, 0x0, 0x0, 0x0, 0x0,
0x5d, 0x0, 0x2, 0xc0, 0x0, 0xeb, 0x4f, 0x0,
0x0, 0x0, 0x0, 0x5d, 0x0, 0xc, 0x30, 0x7,
0xe1, 0x4f, 0x77, 0x77, 0x77, 0x77, 0xae, 0x0,
0xae, 0xbc, 0xbf, 0x30, 0x4f, 0x0, 0x0, 0x0,
0x0, 0x34, 0x0, 0x3b, 0x40, 0xb7, 0x0, 0x4f,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5,
0xb0, 0x0, 0x4e, 0x50, 0x0, 0x0, 0x0, 0x2,
0x90, 0x0, 0x1d, 0x10, 0x0, 0x5d, 0xf8, 0x7f,
0x87, 0xf9, 0x7a, 0xf2, 0x0, 0xb3, 0x0, 0x0,
0x7c, 0xf1, 0xf, 0x10, 0xe2, 0x5, 0xc0, 0x2c,
0xb7, 0x99, 0x72, 0x99, 0xf1, 0xf, 0x10, 0xe2,
0x5, 0xc0, 0x1e, 0xd7, 0x30, 0x0, 0xc6, 0xf1,
0xf, 0x10, 0xe2, 0x5, 0xc0, 0x1, 0x0, 0x0,
0x0, 0xf2, 0xf8, 0x7f, 0x87, 0xf9, 0x7a, 0xc0,
0x0, 0x0, 0x15, 0x77, 0xd0, 0xf1, 0xf, 0x10,
0xe2, 0x5, 0xc0, 0x47, 0xae, 0xc5, 0xa, 0x60,
0xf1, 0xf, 0x10, 0xe2, 0x5, 0xc0, 0x7f, 0xa2,
0x0, 0x2d, 0x0, 0xf1, 0xf, 0x10, 0xe2, 0x5,
0xc0, 0x2, 0x0, 0x0, 0xb4, 0x0, 0xf1, 0xf,
0x10, 0x80, 0x5, 0xc0, 0x0, 0x0, 0x6, 0x70,
0x1, 0xf1, 0x3, 0x0, 0x38, 0x8b, 0xb0, 0x0,
0x0, 0x37, 0x0, 0x1, 0xc0, 0x0, 0x0, 0x0,
0x7f, 0x50, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x1, 0x0,
/* U+827A "艺" */ /* U+827A "艺" */
0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x1, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xc1,
@ -2353,6 +2799,79 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xfd, 0x40, 0xfd, 0x40,
/* U+8F7D "载" */
0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x2, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8,
0x0, 0x0, 0x8d, 0x41, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0xf, 0x50, 0x0, 0x7, 0xf2, 0x1d,
0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf3, 0x3,
0xd2, 0x6f, 0x0, 0x2f, 0xa0, 0x0, 0x0, 0x2a,
0x87, 0x7f, 0x97, 0x77, 0x55, 0xf0, 0x0, 0x8c,
0x0, 0x0, 0x0, 0x0, 0x0, 0xf3, 0x0, 0x0,
0x4f, 0x0, 0x0, 0x1, 0x10, 0x0, 0x0, 0x0,
0xf, 0x30, 0x0, 0x3, 0xf1, 0x0, 0x0, 0xdd,
0x10, 0x69, 0x77, 0x7a, 0x77, 0x77, 0x77, 0x9f,
0x97, 0x77, 0x77, 0x74, 0x0, 0x0, 0x2, 0xf8,
0x0, 0x0, 0x2, 0xf3, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x9c, 0x0, 0x0, 0x78, 0xf, 0x50,
0x6, 0x91, 0x0, 0x8, 0x97, 0x9f, 0x87, 0x77,
0x79, 0x93, 0xe6, 0x0, 0xaf, 0x50, 0x0, 0x0,
0xc, 0x90, 0x42, 0x0, 0x0, 0xc, 0x90, 0xe,
0xa0, 0x0, 0x0, 0x6, 0xf1, 0x8, 0xe1, 0x0,
0x0, 0x9c, 0x4, 0xf2, 0x0, 0x0, 0x2, 0xf7,
0x0, 0x8b, 0x0, 0x47, 0x5, 0xf0, 0xbb, 0x0,
0x0, 0x0, 0x5f, 0x87, 0x7b, 0xd7, 0x7b, 0xb2,
0x1f, 0x9f, 0x30, 0x0, 0x0, 0x0, 0x30, 0x0,
0x7b, 0x0, 0x0, 0x0, 0xbf, 0xa0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x7, 0xb0, 0x0, 0x20, 0xa,
0xf5, 0x0, 0x1, 0x30, 0x0, 0x0, 0x24, 0xbe,
0xa9, 0x73, 0x6, 0xfd, 0xd0, 0x0, 0x54, 0x1,
0xce, 0xfd, 0xab, 0xb0, 0x0, 0x5, 0xf4, 0x1e,
0xc1, 0x8, 0x30, 0x7, 0x62, 0x0, 0x8b, 0x0,
0x7, 0xd3, 0x0, 0x3e, 0xd3, 0xc3, 0x0, 0x0,
0x0, 0x8, 0xb0, 0x1a, 0x91, 0x0, 0x0, 0x2d,
0xff, 0x50, 0x0, 0x0, 0x0, 0x9c, 0x39, 0x30,
0x0, 0x0, 0x0, 0x7, 0xe9, 0x0, 0x0, 0x0,
0x3, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x30,
/* U+8F91 "辑" */
0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xc0,
0x0, 0x8, 0x10, 0x0, 0x0, 0x85, 0x0, 0x0,
0x0, 0x0, 0x3f, 0x30, 0x0, 0xe, 0xa7, 0x77,
0x77, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x8d, 0x0,
0x10, 0xd, 0x60, 0x0, 0x0, 0xe6, 0x0, 0x0,
0x4, 0x44, 0xda, 0x44, 0xe8, 0xd, 0x60, 0x0,
0x0, 0xe6, 0x0, 0x0, 0x3, 0x45, 0xf4, 0x22,
0x22, 0xd, 0xa7, 0x77, 0x77, 0xf6, 0x0, 0x0,
0x0, 0x8, 0xc0, 0x0, 0x0, 0xe, 0x60, 0x0,
0x0, 0xe6, 0x0, 0x0, 0x0, 0xe, 0x62, 0xd4,
0x0, 0x8, 0x20, 0x0, 0x0, 0x30, 0x5, 0x0,
0x0, 0x4f, 0x1, 0xf2, 0x28, 0x88, 0x77, 0x77,
0x77, 0x87, 0xbe, 0x40, 0x0, 0xaa, 0x1, 0xf1,
0x1, 0xb, 0x70, 0x0, 0x0, 0xd6, 0x0, 0x0,
0x6, 0xf8, 0x45, 0xf5, 0xc9, 0xb, 0x70, 0x0,
0x0, 0xd6, 0x0, 0x0, 0x1, 0xa3, 0x24, 0xf4,
0x22, 0xb, 0xb7, 0x77, 0x77, 0xe6, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf1, 0x0, 0xb, 0x70, 0x0,
0x0, 0xd6, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf1,
0x0, 0xb, 0x70, 0x0, 0x0, 0xd6, 0x0, 0x0,
0x0, 0x0, 0x1, 0xf3, 0x57, 0x5b, 0xb7, 0x77,
0x77, 0xe6, 0x0, 0x0, 0x0, 0x2, 0x6a, 0xfa,
0x30, 0xb, 0x70, 0x0, 0x0, 0xd6, 0x0, 0x0,
0x8, 0xef, 0xb6, 0xf1, 0x0, 0xb, 0x70, 0x0,
0x0, 0xd6, 0x1b, 0x20, 0x3, 0xb2, 0x1, 0xf2,
0x34, 0x5d, 0xb7, 0x77, 0x77, 0xec, 0xaa, 0x70,
0x0, 0x0, 0x1, 0xf2, 0x55, 0x21, 0x0, 0x0,
0x0, 0xd6, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf2,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd6, 0x0, 0x0,
0x0, 0x0, 0x2, 0xf2, 0x0, 0x0, 0x0, 0x0,
0x0, 0xd6, 0x0, 0x0, 0x0, 0x0, 0x2, 0xe2,
0x0, 0x0, 0x0, 0x0, 0x0, 0xd5, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0,
/* U+901F "速" */ /* U+901F "速" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
@ -2460,6 +2979,39 @@ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
0x0, 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0,
0x2, 0x30, 0x0, 0x0, 0x0, 0x2, 0x30, 0x0, 0x0, 0x0,
/* U+9664 "除" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x30, 0x0,
0x0, 0x0, 0x2, 0x0, 0x0, 0x40, 0x0, 0x0,
0xaf, 0x50, 0x0, 0x0, 0x0, 0xd9, 0x77, 0x8f,
0xb0, 0x0, 0x1f, 0xc6, 0x0, 0x0, 0x0, 0xd,
0x50, 0x7, 0xf2, 0x0, 0x9, 0xe1, 0x92, 0x0,
0x0, 0x0, 0xd5, 0x0, 0xd7, 0x0, 0x3, 0xf5,
0x2, 0xd2, 0x0, 0x0, 0xc, 0x50, 0x3d, 0x0,
0x0, 0xc9, 0x0, 0x5, 0xe2, 0x0, 0x0, 0xc5,
0x9, 0x40, 0x0, 0x8c, 0x0, 0x0, 0x8, 0xf8,
0x0, 0xc, 0x50, 0x90, 0x0, 0x5c, 0x10, 0x0,
0x0, 0x27, 0xfe, 0x92, 0xc5, 0x26, 0x0, 0x5a,
0x47, 0x77, 0x77, 0x8f, 0x74, 0xe9, 0x1c, 0x50,
0x75, 0x55, 0x0, 0x30, 0xe, 0x40, 0x0, 0x0,
0x0, 0xc5, 0x0, 0xd3, 0x0, 0x0, 0x0, 0xe4,
0x0, 0x0, 0x0, 0xc, 0x50, 0x6, 0xd0, 0x0,
0x0, 0xe, 0x40, 0x0, 0x0, 0x0, 0xc5, 0x0,
0x2f, 0x20, 0x0, 0x0, 0xe4, 0x0, 0xc, 0x90,
0xc, 0x50, 0x1, 0xf5, 0xa8, 0x77, 0x7f, 0xa7,
0x77, 0x77, 0x20, 0xc5, 0x0, 0x4f, 0x20, 0x0,
0x0, 0xe4, 0x0, 0x0, 0x0, 0xc, 0x89, 0xae,
0xc0, 0x4, 0xd2, 0xe, 0x40, 0x82, 0x0, 0x0,
0xc5, 0x1d, 0xc1, 0x0, 0xde, 0x40, 0xe4, 0x1,
0xc5, 0x0, 0xc, 0x50, 0x10, 0x0, 0x7e, 0x20,
0xe, 0x40, 0x2, 0xe8, 0x0, 0xd5, 0x0, 0x0,
0x4d, 0x20, 0x0, 0xe4, 0x0, 0x5, 0xf6, 0xd,
0x50, 0x0, 0x3b, 0x10, 0x0, 0xe, 0x40, 0x0,
0xd, 0x90, 0xd5, 0x0, 0x37, 0x0, 0x58, 0x66,
0xf4, 0x0, 0x0, 0x32, 0xd, 0x50, 0x0, 0x0,
0x0, 0x1a, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x71,
0x0, 0x0, 0x0, 0x0, 0x7, 0x10, 0x0, 0x0,
0x0, 0x0,
/* U+98CE "风" */ /* U+98CE "风" */
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x40, 0x0, 0x0,
@ -4577,105 +5129,121 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
{.bitmap_index = 6926, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 6926, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 7179, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 7179, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 7444, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 7444, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 7709, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 7709, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 7951, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 7985, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 8193, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 8250, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 8446, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 8526, .adv_w = 384, .box_w = 22, .box_h = 21, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 8699, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 8757, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 8952, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 9022, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 9182, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 9264, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 9402, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 9506, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 9633, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 9759, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 9886, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 10012, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 10139, .adv_w = 384, .box_w = 22, .box_h = 19, .ofs_x = 1, .ofs_y = -1}, {.bitmap_index = 10265, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
{.bitmap_index = 10348, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 10495, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 10613, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 10715, .adv_w = 384, .box_w = 20, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 10878, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 10945, .adv_w = 384, .box_w = 21, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 11143, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 11176, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 11408, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 11429, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 11673, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 11682, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 11938, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 11947, .adv_w = 384, .box_w = 22, .box_h = 19, .ofs_x = 1, .ofs_y = -1},
{.bitmap_index = 12214, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 12156, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 12467, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 12421, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 12732, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 12686, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 12985, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, {.bitmap_index = 12951, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 13205, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 13216, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 13470, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 13469, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 13712, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 13734, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 13954, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 13999, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 14219, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 14264, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 14471, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 14529, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 14724, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, {.bitmap_index = 14805, .adv_w = 384, .box_w = 19, .box_h = 22, .ofs_x = 3, .ofs_y = -3},
{.bitmap_index = 14944, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 15014, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 15209, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 15267, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 15451, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 15532, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 15693, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 15785, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 3, .ofs_y = -2},
{.bitmap_index = 15946, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 16005, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 16188, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 16270, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 16464, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 16512, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 16729, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3}, {.bitmap_index = 16754, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 16982, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 17019, .adv_w = 384, .box_w = 24, .box_h = 21, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 17224, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 17271, .adv_w = 384, .box_w = 23, .box_h = 22, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 17489, .adv_w = 384, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 17524, .adv_w = 384, .box_w = 20, .box_h = 22, .ofs_x = 3, .ofs_y = -2},
{.bitmap_index = 17789, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 17744, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 18005, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 18009, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 18269, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 18251, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 18485, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 18493, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 18638, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 18735, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 18926, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 18988, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 19214, .adv_w = 432, .box_w = 27, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 19241, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 19511, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 19483, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 19799, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 19748, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 20042, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, {.bitmap_index = 20024, .adv_w = 384, .box_w = 24, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 20354, .adv_w = 192, .box_w = 12, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 20300, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 20468, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 20565, .adv_w = 384, .box_w = 22, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
{.bitmap_index = 20639, .adv_w = 432, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 20818, .adv_w = 384, .box_w = 21, .box_h = 23, .ofs_x = 2, .ofs_y = -3},
{.bitmap_index = 20963, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 21060, .adv_w = 384, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 21179, .adv_w = 264, .box_w = 17, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 21302, .adv_w = 384, .box_w = 23, .box_h = 23, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 21383, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, {.bitmap_index = 21567, .adv_w = 384, .box_w = 24, .box_h = 25, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 21548, .adv_w = 336, .box_w = 21, .box_h = 26, .ofs_x = 0, .ofs_y = -4}, {.bitmap_index = 21867, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 21821, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 22083, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 22052, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 22347, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 22283, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2}, {.bitmap_index = 22563, .adv_w = 264, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 22448, .adv_w = 336, .box_w = 23, .box_h = 22, .ofs_x = -1, .ofs_y = -2}, {.bitmap_index = 22716, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 22701, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 23004, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 22844, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2}, {.bitmap_index = 23292, .adv_w = 432, .box_w = 27, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 22987, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 23589, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 23218, .adv_w = 336, .box_w = 21, .box_h = 6, .ofs_x = 0, .ofs_y = 6}, {.bitmap_index = 23877, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 23281, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 24120, .adv_w = 384, .box_w = 24, .box_h = 26, .ofs_x = 0, .ofs_y = -4},
{.bitmap_index = 23524, .adv_w = 480, .box_w = 31, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, {.bitmap_index = 24432, .adv_w = 192, .box_w = 12, .box_h = 19, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 23896, .adv_w = 432, .box_w = 29, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, {.bitmap_index = 24546, .adv_w = 288, .box_w = 18, .box_h = 19, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 24244, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 24717, .adv_w = 432, .box_w = 27, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 24508, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, {.bitmap_index = 25041, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 24655, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2}, {.bitmap_index = 25257, .adv_w = 264, .box_w = 17, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 24802, .adv_w = 480, .box_w = 31, .box_h = 19, .ofs_x = -1, .ofs_y = -1}, {.bitmap_index = 25461, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2},
{.bitmap_index = 25097, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 25626, .adv_w = 336, .box_w = 21, .box_h = 26, .ofs_x = 0, .ofs_y = -4},
{.bitmap_index = 25313, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 25899, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 25601, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -3}, {.bitmap_index = 26130, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 25914, .adv_w = 336, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 26361, .adv_w = 336, .box_w = 15, .box_h = 22, .ofs_x = 3, .ofs_y = -2},
{.bitmap_index = 26156, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 26526, .adv_w = 336, .box_w = 23, .box_h = 22, .ofs_x = -1, .ofs_y = -2},
{.bitmap_index = 26408, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 26779, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 26639, .adv_w = 336, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 26922, .adv_w = 240, .box_w = 13, .box_h = 22, .ofs_x = 1, .ofs_y = -2},
{.bitmap_index = 26849, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 27065, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 27065, .adv_w = 240, .box_w = 17, .box_h = 24, .ofs_x = -1, .ofs_y = -3}, {.bitmap_index = 27296, .adv_w = 336, .box_w = 21, .box_h = 6, .ofs_x = 0, .ofs_y = 6},
{.bitmap_index = 27269, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 27359, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 27521, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 27602, .adv_w = 480, .box_w = 31, .box_h = 24, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 27773, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 27974, .adv_w = 432, .box_w = 29, .box_h = 24, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 28016, .adv_w = 384, .box_w = 26, .box_h = 26, .ofs_x = -1, .ofs_y = -4}, {.bitmap_index = 28322, .adv_w = 384, .box_w = 24, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 28354, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 28586, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2},
{.bitmap_index = 28570, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = -2}, {.bitmap_index = 28733, .adv_w = 336, .box_w = 21, .box_h = 14, .ofs_x = 0, .ofs_y = 2},
{.bitmap_index = 28915, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, {.bitmap_index = 28880, .adv_w = 480, .box_w = 31, .box_h = 19, .ofs_x = -1, .ofs_y = -1},
{.bitmap_index = 29155, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, {.bitmap_index = 29175, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 29395, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, {.bitmap_index = 29391, .adv_w = 384, .box_w = 24, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 29635, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, {.bitmap_index = 29679, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 29875, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1}, {.bitmap_index = 29992, .adv_w = 336, .box_w = 22, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 30115, .adv_w = 480, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 30234, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 30425, .adv_w = 336, .box_w = 19, .box_h = 24, .ofs_x = 1, .ofs_y = -3}, {.bitmap_index = 30486, .adv_w = 336, .box_w = 21, .box_h = 22, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 30653, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 30717, .adv_w = 336, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 30905, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -4}, {.bitmap_index = 30927, .adv_w = 384, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 31218, .adv_w = 480, .box_w = 30, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 31143, .adv_w = 240, .box_w = 17, .box_h = 24, .ofs_x = -1, .ofs_y = -3},
{.bitmap_index = 31488, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3}, {.bitmap_index = 31347, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 31704, .adv_w = 386, .box_w = 25, .box_h = 16, .ofs_x = 0, .ofs_y = 1} {.bitmap_index = 31599, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 31851, .adv_w = 432, .box_w = 27, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 32094, .adv_w = 384, .box_w = 26, .box_h = 26, .ofs_x = -1, .ofs_y = -4},
{.bitmap_index = 32432, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 32648, .adv_w = 480, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = -2},
{.bitmap_index = 32993, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 33233, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 33473, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 33713, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 33953, .adv_w = 480, .box_w = 30, .box_h = 16, .ofs_x = 0, .ofs_y = 1},
{.bitmap_index = 34193, .adv_w = 480, .box_w = 31, .box_h = 20, .ofs_x = 0, .ofs_y = -1},
{.bitmap_index = 34503, .adv_w = 336, .box_w = 19, .box_h = 24, .ofs_x = 1, .ofs_y = -3},
{.bitmap_index = 34731, .adv_w = 336, .box_w = 21, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 34983, .adv_w = 384, .box_w = 25, .box_h = 25, .ofs_x = -1, .ofs_y = -4},
{.bitmap_index = 35296, .adv_w = 480, .box_w = 30, .box_h = 18, .ofs_x = 0, .ofs_y = 0},
{.bitmap_index = 35566, .adv_w = 288, .box_w = 18, .box_h = 24, .ofs_x = 0, .ofs_y = -3},
{.bitmap_index = 35782, .adv_w = 386, .box_w = 25, .box_h = 16, .ofs_x = 0, .ofs_y = 1}
}; };
/*--------------------- /*---------------------
@ -4683,11 +5251,13 @@ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
*--------------------*/ *--------------------*/
static const uint16_t unicode_list_1[] = { static const uint16_t unicode_list_1[] = {
0x0, 0x112, 0x150, 0x460, 0x465, 0x50c, 0x51a, 0x550, 0x0, 0x112, 0x150, 0x1a6, 0x221, 0x26d, 0x32a, 0x3e5,
0x5b5, 0x5d2, 0x62d, 0x77c, 0x7f9, 0xfaa, 0xfc8, 0x1054, 0x460, 0x465, 0x50c, 0x51a, 0x550, 0x5b5, 0x5d2, 0x5f4,
0x106b, 0x116f, 0x1595, 0x160b, 0x175e, 0x18e4, 0x18ff, 0x1d2a, 0x62d, 0x77c, 0x7f9, 0xd1d, 0xfaa, 0xfc8, 0x1054, 0x106b,
0x1d99, 0x1dd9, 0x1eba, 0x1f06, 0x1f77, 0x1fee, 0x2574, 0x26fa, 0x116f, 0x1234, 0x1557, 0x1595, 0x1597, 0x160b, 0x175e, 0x17d3,
0x2bd0, 0x2c3f, 0x2ec0, 0x30a4, 0x343f, 0x41e4, 0x4394, 0x4812, 0x18e4, 0x18ff, 0x1d2a, 0x1d99, 0x1dd9, 0x1eba, 0x1f06, 0x1f77,
0x1fee, 0x2574, 0x26fa, 0x2bd0, 0x2c3f, 0x2ec0, 0x308b, 0x30a4,
0x30db, 0x343f, 0x4142, 0x4156, 0x41e4, 0x4394, 0x4812, 0x4829,
0x4a93, 0x4c69, 0xa1c6, 0xa1cd, 0xa1d0, 0xa1d1, 0xa1d2, 0xa1d6, 0x4a93, 0x4c69, 0xa1c6, 0xa1cd, 0xa1d0, 0xa1d1, 0xa1d2, 0xa1d6,
0xa1d8, 0xa1da, 0xa1de, 0xa1e1, 0xa1e6, 0xa1eb, 0xa1ec, 0xa1ed, 0xa1d8, 0xa1da, 0xa1de, 0xa1e1, 0xa1e6, 0xa1eb, 0xa1ec, 0xa1ed,
0xa203, 0xa208, 0xa20d, 0xa210, 0xa211, 0xa212, 0xa216, 0xa217, 0xa203, 0xa208, 0xa20d, 0xa210, 0xa211, 0xa212, 0xa216, 0xa217,
@ -4707,7 +5277,7 @@ static const lv_font_fmt_txt_cmap_t cmaps[] =
}, },
{ {
.range_start = 20027, .range_length = 43624, .glyph_id_start = 96, .range_start = 20027, .range_length = 43624, .glyph_id_start = 96,
.unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 102, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY .unicode_list = unicode_list_1, .glyph_id_ofs_list = NULL, .list_length = 118, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
} }
}; };

5231
applications/lvgl/guider/generated/guider_fonts/lv_font_simsun_32.c

File diff suppressed because it is too large

115
applications/lvgl/guider/generated/setup_scr_screen.c

@ -169,13 +169,13 @@ void setup_scr_screen(lv_ui *ui)
lv_label_set_text(ui->screen_temp, "020.5"); lv_label_set_text(ui->screen_temp, "020.5");
lv_label_set_long_mode(ui->screen_temp, LV_LABEL_LONG_CLIP); lv_label_set_long_mode(ui->screen_temp, LV_LABEL_LONG_CLIP);
lv_obj_set_pos(ui->screen_temp, 50, 10); lv_obj_set_pos(ui->screen_temp, 50, 10);
lv_obj_set_size(ui->screen_temp, 75, 25); lv_obj_set_size(ui->screen_temp, 75, 30);
//Write style for screen_temp, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. //Write style for screen_temp, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_border_width(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_temp, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_temp, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_temp, &lv_font_simsun_28, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_temp, &lv_font_simsun_30, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_temp, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_temp, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_letter_space(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_line_space(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_temp, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -192,13 +192,13 @@ void setup_scr_screen(lv_ui *ui)
lv_label_set_text(ui->screen_water, "9999"); lv_label_set_text(ui->screen_water, "9999");
lv_label_set_long_mode(ui->screen_water, LV_LABEL_LONG_CLIP); lv_label_set_long_mode(ui->screen_water, LV_LABEL_LONG_CLIP);
lv_obj_set_pos(ui->screen_water, 180, 10); lv_obj_set_pos(ui->screen_water, 180, 10);
lv_obj_set_size(ui->screen_water, 80, 25); lv_obj_set_size(ui->screen_water, 80, 30);
//Write style for screen_water, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. //Write style for screen_water, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_border_width(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_water, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_water, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_water, &lv_font_simsun_28, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_water, &lv_font_simsun_30, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_water, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_water, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_letter_space(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_line_space(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_water, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -335,7 +335,7 @@ void setup_scr_screen(lv_ui *ui)
ui_init_style(&style_screen_tabview_extra_btnm_items_default); ui_init_style(&style_screen_tabview_extra_btnm_items_default);
lv_style_set_text_color(&style_screen_tabview_extra_btnm_items_default, lv_color_hex(0x4d4d4d)); lv_style_set_text_color(&style_screen_tabview_extra_btnm_items_default, lv_color_hex(0x4d4d4d));
lv_style_set_text_font(&style_screen_tabview_extra_btnm_items_default, &lv_font_simsun_12); lv_style_set_text_font(&style_screen_tabview_extra_btnm_items_default, &lv_font_simsun_24);
lv_style_set_text_opa(&style_screen_tabview_extra_btnm_items_default, 255); lv_style_set_text_opa(&style_screen_tabview_extra_btnm_items_default, 255);
lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_tabview), &style_screen_tabview_extra_btnm_items_default, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_tabview), &style_screen_tabview_extra_btnm_items_default, LV_PART_ITEMS|LV_STATE_DEFAULT);
@ -344,7 +344,7 @@ void setup_scr_screen(lv_ui *ui)
ui_init_style(&style_screen_tabview_extra_btnm_items_checked); ui_init_style(&style_screen_tabview_extra_btnm_items_checked);
lv_style_set_text_color(&style_screen_tabview_extra_btnm_items_checked, lv_color_hex(0x2195f6)); lv_style_set_text_color(&style_screen_tabview_extra_btnm_items_checked, lv_color_hex(0x2195f6));
lv_style_set_text_font(&style_screen_tabview_extra_btnm_items_checked, &lv_font_montserratMedium_12); lv_style_set_text_font(&style_screen_tabview_extra_btnm_items_checked, &lv_font_simsun_14);
lv_style_set_text_opa(&style_screen_tabview_extra_btnm_items_checked, 255); lv_style_set_text_opa(&style_screen_tabview_extra_btnm_items_checked, 255);
lv_style_set_border_width(&style_screen_tabview_extra_btnm_items_checked, 4); lv_style_set_border_width(&style_screen_tabview_extra_btnm_items_checked, 4);
lv_style_set_border_opa(&style_screen_tabview_extra_btnm_items_checked, 255); lv_style_set_border_opa(&style_screen_tabview_extra_btnm_items_checked, 255);
@ -369,8 +369,8 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_align(ui->screen_w_start_label, LV_ALIGN_CENTER, 0, 0); lv_obj_align(ui->screen_w_start_label, LV_ALIGN_CENTER, 0, 0);
lv_obj_set_style_pad_all(ui->screen_w_start, 0, LV_STATE_DEFAULT); lv_obj_set_style_pad_all(ui->screen_w_start, 0, LV_STATE_DEFAULT);
lv_obj_set_width(ui->screen_w_start_label, LV_PCT(100)); lv_obj_set_width(ui->screen_w_start_label, LV_PCT(100));
lv_obj_set_pos(ui->screen_w_start, 890, 430); lv_obj_set_pos(ui->screen_w_start, 880, 431);
lv_obj_set_size(ui->screen_w_start, 100, 50); lv_obj_set_size(ui->screen_w_start, 120, 50);
//Write style for screen_w_start, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. //Write style for screen_w_start, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_bg_opa(ui->screen_w_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_w_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -380,7 +380,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_w_start, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_start, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_w_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_w_start, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_start, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_w_start, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_start, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_w_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_w_start, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_start, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -392,8 +392,8 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_align(ui->screen_w_edit_label, LV_ALIGN_CENTER, 0, 0); lv_obj_align(ui->screen_w_edit_label, LV_ALIGN_CENTER, 0, 0);
lv_obj_set_style_pad_all(ui->screen_w_edit, 0, LV_STATE_DEFAULT); lv_obj_set_style_pad_all(ui->screen_w_edit, 0, LV_STATE_DEFAULT);
lv_obj_set_width(ui->screen_w_edit_label, LV_PCT(100)); lv_obj_set_width(ui->screen_w_edit_label, LV_PCT(100));
lv_obj_set_pos(ui->screen_w_edit, 890, 355); lv_obj_set_pos(ui->screen_w_edit, 880, 355);
lv_obj_set_size(ui->screen_w_edit, 100, 50); lv_obj_set_size(ui->screen_w_edit, 120, 50);
//Write style for screen_w_edit, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. //Write style for screen_w_edit, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_bg_opa(ui->screen_w_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_w_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -403,7 +403,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_w_edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_w_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_w_edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_w_edit, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_edit, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_w_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_w_edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -415,8 +415,8 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_align(ui->screen_w_w_label, LV_ALIGN_CENTER, 0, 0); lv_obj_align(ui->screen_w_w_label, LV_ALIGN_CENTER, 0, 0);
lv_obj_set_style_pad_all(ui->screen_w_w, 0, LV_STATE_DEFAULT); lv_obj_set_style_pad_all(ui->screen_w_w, 0, LV_STATE_DEFAULT);
lv_obj_set_width(ui->screen_w_w_label, LV_PCT(100)); lv_obj_set_width(ui->screen_w_w_label, LV_PCT(100));
lv_obj_set_pos(ui->screen_w_w, 890, 280); lv_obj_set_pos(ui->screen_w_w, 880, 280);
lv_obj_set_size(ui->screen_w_w, 100, 50); lv_obj_set_size(ui->screen_w_w, 120, 50);
//Write style for screen_w_w, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. //Write style for screen_w_w, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_bg_opa(ui->screen_w_w, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_w_w, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -426,7 +426,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_w_w, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_w_w, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_w_w, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_w_w, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_w_w, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_w, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_w_w, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_w, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_w_w, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_w, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_w_w, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_w, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -495,7 +495,7 @@ void setup_scr_screen(lv_ui *ui)
//Write style for screen_w_list, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT. //Write style for screen_w_list, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT.
lv_obj_set_style_text_color(ui->screen_w_list, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_list, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_w_list, &lv_font_montserratMedium_12, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_list, &lv_font_simsun_14, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_w_list, 255, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_list, 255, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_w_list, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_w_list, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(ui->screen_w_list, 0, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_w_list, 0, LV_PART_ITEMS|LV_STATE_DEFAULT);
@ -526,41 +526,6 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_pad_right(ui->screen_inf_list, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_inf_list, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_inf_list, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_inf_list, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
//Write codes screen_list_inf
ui->screen_list_inf = lv_table_create(ui->screen_inf_list);
lv_table_set_col_cnt(ui->screen_list_inf,1);
lv_table_set_row_cnt(ui->screen_list_inf,1);
lv_table_set_cell_value(ui->screen_list_inf,0,0,"Name");
lv_obj_set_pos(ui->screen_list_inf, 0, 0);
lv_obj_set_scrollbar_mode(ui->screen_list_inf, LV_SCROLLBAR_MODE_OFF);
//Write style for screen_list_inf, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_pad_top(ui->screen_list_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui->screen_list_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui->screen_list_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui->screen_list_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(ui->screen_list_inf, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui->screen_list_inf, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_grad_dir(ui->screen_list_inf, LV_GRAD_DIR_NONE, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_border_width(ui->screen_list_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui->screen_list_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_list_inf, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
//Write style for screen_list_inf, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT.
lv_obj_set_style_text_color(ui->screen_list_inf, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_list_inf, &lv_font_montserratMedium_12, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_list_inf, 255, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_list_inf, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(ui->screen_list_inf, 0, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_width(ui->screen_list_inf, 3, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_opa(ui->screen_list_inf, 255, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_color(ui->screen_list_inf, lv_color_hex(0xd5dee6), LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_border_side(ui->screen_list_inf, LV_BORDER_SIDE_FULL, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui->screen_list_inf, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_bottom(ui->screen_list_inf, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui->screen_list_inf, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui->screen_list_inf, 10, LV_PART_ITEMS|LV_STATE_DEFAULT);
//Write codes 工艺 //Write codes 工艺
ui->screen_tabview_tab_2 = lv_tabview_add_tab(ui->screen_tabview,"工艺"); ui->screen_tabview_tab_2 = lv_tabview_add_tab(ui->screen_tabview,"工艺");
lv_obj_t * screen_tabview_tab_2_label = lv_label_create(ui->screen_tabview_tab_2); lv_obj_t * screen_tabview_tab_2_label = lv_label_create(ui->screen_tabview_tab_2);
@ -586,11 +551,9 @@ void setup_scr_screen(lv_ui *ui)
//Write codes screen_table_1 //Write codes screen_table_1
ui->screen_table_1 = lv_table_create(ui->screen_cont_p); ui->screen_table_1 = lv_table_create(ui->screen_cont_p);
lv_table_set_col_cnt(ui->screen_table_1,3); lv_table_set_col_cnt(ui->screen_table_1,1);
lv_table_set_row_cnt(ui->screen_table_1,1); lv_table_set_row_cnt(ui->screen_table_1,1);
lv_table_set_cell_value(ui->screen_table_1,0,0,"Name"); lv_table_set_cell_value(ui->screen_table_1,0,0,"Name");
lv_table_set_cell_value(ui->screen_table_1,0,1,"Price");
lv_table_set_cell_value(ui->screen_table_1,0,2,"title");
lv_obj_set_pos(ui->screen_table_1, 0, -1); lv_obj_set_pos(ui->screen_table_1, 0, -1);
lv_obj_set_scrollbar_mode(ui->screen_table_1, LV_SCROLLBAR_MODE_OFF); lv_obj_set_scrollbar_mode(ui->screen_table_1, LV_SCROLLBAR_MODE_OFF);
@ -608,7 +571,7 @@ void setup_scr_screen(lv_ui *ui)
//Write style for screen_table_1, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT. //Write style for screen_table_1, Part: LV_PART_ITEMS, State: LV_STATE_DEFAULT.
lv_obj_set_style_text_color(ui->screen_table_1, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_table_1, lv_color_hex(0x393c41), LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_table_1, &lv_font_montserratMedium_12, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_table_1, &lv_font_simsun_14, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_table_1, 255, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_table_1, 255, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_table_1, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_table_1, LV_TEXT_ALIGN_CENTER, LV_PART_ITEMS|LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(ui->screen_table_1, 0, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_table_1, 0, LV_PART_ITEMS|LV_STATE_DEFAULT);
@ -661,7 +624,7 @@ void setup_scr_screen(lv_ui *ui)
//Write style for screen_chart_temp, Part: LV_PART_TICKS, State: LV_STATE_DEFAULT. //Write style for screen_chart_temp, Part: LV_PART_TICKS, State: LV_STATE_DEFAULT.
lv_obj_set_style_text_color(ui->screen_chart_temp, lv_color_hex(0x151212), LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_chart_temp, lv_color_hex(0x151212), LV_PART_TICKS|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_chart_temp, &lv_font_montserratMedium_12, LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_chart_temp, &lv_font_simsun_14, LV_PART_TICKS|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_chart_temp, 255, LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_chart_temp, 255, LV_PART_TICKS|LV_STATE_DEFAULT);
lv_obj_set_style_line_width(ui->screen_chart_temp, 2, LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_line_width(ui->screen_chart_temp, 2, LV_PART_TICKS|LV_STATE_DEFAULT);
lv_obj_set_style_line_color(ui->screen_chart_temp, lv_color_hex(0xe8e8e8), LV_PART_TICKS|LV_STATE_DEFAULT); lv_obj_set_style_line_color(ui->screen_chart_temp, lv_color_hex(0xe8e8e8), LV_PART_TICKS|LV_STATE_DEFAULT);
@ -779,7 +742,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_p_start, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_start, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_p_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_start, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_p_start, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_start, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_p_start, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_start, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_p_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_start, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_p_start, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_start, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -802,7 +765,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_p_edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_p_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_p_edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_p_edit, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_edit, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_p_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_p_edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -825,7 +788,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_p_delete, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_delete, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_p_delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_p_delete, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_delete, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_p_delete, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_delete, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_p_delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_p_delete, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_delete, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -848,7 +811,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_p_insert, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_p_insert, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_p_insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_p_insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_p_insert, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_p_insert, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_p_insert, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_p_insert, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_p_insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_p_insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_p_insert, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_p_insert, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -866,7 +829,7 @@ void setup_scr_screen(lv_ui *ui)
//Write style for screen_w_io, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. //Write style for screen_w_io, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_bg_opa(ui->screen_w_io, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_w_io, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_w_io, lv_color_hex(0x4d4d4d), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_w_io, lv_color_hex(0x4d4d4d), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_w_io, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_w_io, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_w_io, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_w_io, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_letter_space(ui->screen_w_io, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_w_io, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_line_space(ui->screen_w_io, 16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_w_io, 16, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -893,7 +856,7 @@ void setup_scr_screen(lv_ui *ui)
ui_init_style(&style_screen_w_io_extra_btnm_items_default); ui_init_style(&style_screen_w_io_extra_btnm_items_default);
lv_style_set_text_color(&style_screen_w_io_extra_btnm_items_default, lv_color_hex(0x291f1f)); lv_style_set_text_color(&style_screen_w_io_extra_btnm_items_default, lv_color_hex(0x291f1f));
lv_style_set_text_font(&style_screen_w_io_extra_btnm_items_default, &lv_font_simsun_16); lv_style_set_text_font(&style_screen_w_io_extra_btnm_items_default, &lv_font_simsun_24);
lv_style_set_text_opa(&style_screen_w_io_extra_btnm_items_default, 255); lv_style_set_text_opa(&style_screen_w_io_extra_btnm_items_default, 255);
lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_w_io), &style_screen_w_io_extra_btnm_items_default, LV_PART_ITEMS|LV_STATE_DEFAULT); lv_obj_add_style(lv_tabview_get_tab_btns(ui->screen_w_io), &style_screen_w_io_extra_btnm_items_default, LV_PART_ITEMS|LV_STATE_DEFAULT);
@ -902,7 +865,7 @@ void setup_scr_screen(lv_ui *ui)
ui_init_style(&style_screen_w_io_extra_btnm_items_checked); ui_init_style(&style_screen_w_io_extra_btnm_items_checked);
lv_style_set_text_color(&style_screen_w_io_extra_btnm_items_checked, lv_color_hex(0x007185)); lv_style_set_text_color(&style_screen_w_io_extra_btnm_items_checked, lv_color_hex(0x007185));
lv_style_set_text_font(&style_screen_w_io_extra_btnm_items_checked, &lv_font_Alatsi_Regular_18); lv_style_set_text_font(&style_screen_w_io_extra_btnm_items_checked, &lv_font_simsun_18);
lv_style_set_text_opa(&style_screen_w_io_extra_btnm_items_checked, 255); lv_style_set_text_opa(&style_screen_w_io_extra_btnm_items_checked, 255);
lv_style_set_border_width(&style_screen_w_io_extra_btnm_items_checked, 4); lv_style_set_border_width(&style_screen_w_io_extra_btnm_items_checked, 4);
lv_style_set_border_opa(&style_screen_w_io_extra_btnm_items_checked, 255); lv_style_set_border_opa(&style_screen_w_io_extra_btnm_items_checked, 255);
@ -7081,7 +7044,7 @@ void setup_scr_screen(lv_ui *ui)
lv_style_set_pad_bottom(&style_screen_proess_set_extra_btns_main_default, 5); lv_style_set_pad_bottom(&style_screen_proess_set_extra_btns_main_default, 5);
lv_style_set_border_width(&style_screen_proess_set_extra_btns_main_default, 0); lv_style_set_border_width(&style_screen_proess_set_extra_btns_main_default, 0);
lv_style_set_text_color(&style_screen_proess_set_extra_btns_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_color(&style_screen_proess_set_extra_btns_main_default, lv_color_hex(0x0D3055));
lv_style_set_text_font(&style_screen_proess_set_extra_btns_main_default, &lv_font_montserratMedium_12); lv_style_set_text_font(&style_screen_proess_set_extra_btns_main_default, &lv_font_simsun_14);
lv_style_set_text_opa(&style_screen_proess_set_extra_btns_main_default, 255); lv_style_set_text_opa(&style_screen_proess_set_extra_btns_main_default, 255);
lv_style_set_radius(&style_screen_proess_set_extra_btns_main_default, 3); lv_style_set_radius(&style_screen_proess_set_extra_btns_main_default, 3);
lv_style_set_bg_opa(&style_screen_proess_set_extra_btns_main_default, 255); lv_style_set_bg_opa(&style_screen_proess_set_extra_btns_main_default, 255);
@ -7099,7 +7062,7 @@ void setup_scr_screen(lv_ui *ui)
lv_style_set_pad_bottom(&style_screen_proess_set_extra_texts_main_default, 5); lv_style_set_pad_bottom(&style_screen_proess_set_extra_texts_main_default, 5);
lv_style_set_border_width(&style_screen_proess_set_extra_texts_main_default, 0); lv_style_set_border_width(&style_screen_proess_set_extra_texts_main_default, 0);
lv_style_set_text_color(&style_screen_proess_set_extra_texts_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_color(&style_screen_proess_set_extra_texts_main_default, lv_color_hex(0x0D3055));
lv_style_set_text_font(&style_screen_proess_set_extra_texts_main_default, &lv_font_montserratMedium_12); lv_style_set_text_font(&style_screen_proess_set_extra_texts_main_default, &lv_font_simsun_14);
lv_style_set_text_opa(&style_screen_proess_set_extra_texts_main_default, 255); lv_style_set_text_opa(&style_screen_proess_set_extra_texts_main_default, 255);
lv_style_set_radius(&style_screen_proess_set_extra_texts_main_default, 3); lv_style_set_radius(&style_screen_proess_set_extra_texts_main_default, 3);
lv_style_set_transform_width(&style_screen_proess_set_extra_texts_main_default, 0); lv_style_set_transform_width(&style_screen_proess_set_extra_texts_main_default, 0);
@ -7153,7 +7116,7 @@ void setup_scr_screen(lv_ui *ui)
lv_style_set_pad_bottom(&style_screen_step_set_extra_btns_main_default, 5); lv_style_set_pad_bottom(&style_screen_step_set_extra_btns_main_default, 5);
lv_style_set_border_width(&style_screen_step_set_extra_btns_main_default, 0); lv_style_set_border_width(&style_screen_step_set_extra_btns_main_default, 0);
lv_style_set_text_color(&style_screen_step_set_extra_btns_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_color(&style_screen_step_set_extra_btns_main_default, lv_color_hex(0x0D3055));
lv_style_set_text_font(&style_screen_step_set_extra_btns_main_default, &lv_font_montserratMedium_12); lv_style_set_text_font(&style_screen_step_set_extra_btns_main_default, &lv_font_simsun_24);
lv_style_set_text_opa(&style_screen_step_set_extra_btns_main_default, 255); lv_style_set_text_opa(&style_screen_step_set_extra_btns_main_default, 255);
lv_style_set_radius(&style_screen_step_set_extra_btns_main_default, 3); lv_style_set_radius(&style_screen_step_set_extra_btns_main_default, 3);
lv_style_set_bg_opa(&style_screen_step_set_extra_btns_main_default, 255); lv_style_set_bg_opa(&style_screen_step_set_extra_btns_main_default, 255);
@ -7171,7 +7134,7 @@ void setup_scr_screen(lv_ui *ui)
lv_style_set_pad_bottom(&style_screen_step_set_extra_texts_main_default, 5); lv_style_set_pad_bottom(&style_screen_step_set_extra_texts_main_default, 5);
lv_style_set_border_width(&style_screen_step_set_extra_texts_main_default, 0); lv_style_set_border_width(&style_screen_step_set_extra_texts_main_default, 0);
lv_style_set_text_color(&style_screen_step_set_extra_texts_main_default, lv_color_hex(0x0D3055)); lv_style_set_text_color(&style_screen_step_set_extra_texts_main_default, lv_color_hex(0x0D3055));
lv_style_set_text_font(&style_screen_step_set_extra_texts_main_default, &lv_font_montserratMedium_12); lv_style_set_text_font(&style_screen_step_set_extra_texts_main_default, &lv_font_simsun_24);
lv_style_set_text_opa(&style_screen_step_set_extra_texts_main_default, 255); lv_style_set_text_opa(&style_screen_step_set_extra_texts_main_default, 255);
lv_style_set_radius(&style_screen_step_set_extra_texts_main_default, 3); lv_style_set_radius(&style_screen_step_set_extra_texts_main_default, 3);
lv_style_set_transform_width(&style_screen_step_set_extra_texts_main_default, 0); lv_style_set_transform_width(&style_screen_step_set_extra_texts_main_default, 0);
@ -7196,9 +7159,9 @@ void setup_scr_screen(lv_ui *ui)
//Write style for screen_pname_set, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT. //Write style for screen_pname_set, Part: LV_PART_MAIN, State: LV_STATE_DEFAULT.
lv_obj_set_style_text_color(ui->screen_pname_set, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_pname_set, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_pname_set, &lv_font_simsun_32, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_pname_set, &lv_font_simsun_30, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_pname_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_pname_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_letter_space(ui->screen_pname_set, 1, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_pname_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_pname_set, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_pname_set, LV_TEXT_ALIGN_LEFT, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_opa(ui->screen_pname_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_opa(ui->screen_pname_set, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_bg_color(ui->screen_pname_set, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui->screen_pname_set, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
@ -7208,7 +7171,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_border_color(ui->screen_pname_set, lv_color_hex(0xe6e6e6), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_color(ui->screen_pname_set, lv_color_hex(0xe6e6e6), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_border_side(ui->screen_pname_set, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_side(ui->screen_pname_set, LV_BORDER_SIDE_FULL, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_pname_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_pname_set, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_top(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_top(ui->screen_pname_set, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_right(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_right(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_pad_left(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_pad_left(ui->screen_pname_set, 2, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui->screen_pname_set, 4, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_pname_set, 4, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -7238,7 +7201,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_set_Insert, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Insert, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_set_Insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Insert, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_set_Insert, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Insert, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_set_Insert, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Insert, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_set_Insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Insert, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_set_Insert, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Insert, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -7261,7 +7224,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_set_Edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Edit, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_set_Edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Edit, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_set_Edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Edit, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_set_Edit, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Edit, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_set_Edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Edit, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_set_Edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Edit, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -7284,7 +7247,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_set_Delete, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Delete, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_set_Delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Delete, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_set_Delete, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Delete, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_set_Delete, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Delete, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_set_Delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Delete, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_set_Delete, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Delete, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -7307,7 +7270,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_set_Save, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_set_Save, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_set_Save, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_set_Save, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_set_Save, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_set_Save, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_set_Save, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_set_Save, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_set_Save, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_set_Save, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_set_Save, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_set_Save, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -7322,7 +7285,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_border_width(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_border_width(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_radius(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_step_, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_step_, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_step_, &lv_font_simsun_32, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_step_, &lv_font_simsun_30, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_step_, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_step_, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_letter_space(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_letter_space(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_line_space(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_line_space(ui->screen_step_, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
@ -7507,7 +7470,7 @@ void setup_scr_screen(lv_ui *ui)
lv_obj_set_style_radius(ui->screen_sys_save, 5, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_radius(ui->screen_sys_save, 5, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_shadow_width(ui->screen_sys_save, 0, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_shadow_width(ui->screen_sys_save, 0, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_color(ui->screen_sys_save, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_color(ui->screen_sys_save, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_font(ui->screen_sys_save, &lv_font_simsun_16, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_font(ui->screen_sys_save, &lv_font_simsun_24, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_opa(ui->screen_sys_save, 255, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_opa(ui->screen_sys_save, 255, LV_PART_MAIN|LV_STATE_DEFAULT);
lv_obj_set_style_text_align(ui->screen_sys_save, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT); lv_obj_set_style_text_align(ui->screen_sys_save, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN|LV_STATE_DEFAULT);

41
applications/lvgl/ui_data_csv.c

@ -1,4 +1,8 @@
#include <rtthread.h> #include <rtthread.h>
#include <guider/custom/custom.h>
#include <guider/generated/events_init.h>
#include <guider/generated/gui_guider.h>
#include <guider/generated/widgets_init.h>
#include "libcsv.h" #include "libcsv.h"
#include "lvgl.h" #include "lvgl.h"
@ -12,6 +16,7 @@ typedef struct {
int col; // 当前列号 int col; // 当前列号
int total_rows; // 总行数 int total_rows; // 总行数
int max_cols; // 最大列数 int max_cols; // 最大列数
int col_widths[CSV_MAX_COLS]; // 宽度(像素)
char data[CSV_MAX_ROWS][CSV_MAX_COLS][CSV_MAX_FIELD]; // 固定二维数组 char data[CSV_MAX_ROWS][CSV_MAX_COLS][CSV_MAX_FIELD]; // 固定二维数组
} UserData; } UserData;
@ -40,6 +45,12 @@ void field_callback(void *data, size_t size, void *user_data) {
rt_memcpy(user->data[user->row][user->col], data, copy_size); rt_memcpy(user->data[user->row][user->col], data, copy_size);
user->data[user->row][user->col][copy_size] = '\0'; user->data[user->row][user->col][copy_size] = '\0';
// 计算当前字段宽度并更新列宽
int field_width = size * 24; // 假设每个字符 8 像素(英文)
// 中文字符需要 ×2:field_width = copy_size * 16;
if (field_width > user->col_widths[user->col]) {
user->col_widths[user->col] = field_width;
}
// 调试输出 // 调试输出
//rt_kprintf("R:%d C:%d V:\"%s\"\n", user->row, user->col, user->data[user->row][user->col]); //rt_kprintf("R:%d C:%d V:\"%s\"\n", user->row, user->col, user->data[user->row][user->col]);
@ -80,6 +91,13 @@ const char* csv_get_cell(UserData *user, int row, int col) {
return user->data[row][col]; return user->data[row][col];
} }
// ============ 获取列宽 ============
int csv_get_col_width(UserData *user, int col) {
if (user == NULL) return 0;
if (col < 0 || col >= user->max_cols) return 0;
return user->col_widths[col];
}
// ============ 获取行数 ============ // ============ 获取行数 ============
int csv_get_row_count(UserData *user) { int csv_get_row_count(UserData *user) {
return user ? user->total_rows : 0; return user ? user->total_rows : 0;
@ -99,35 +117,39 @@ void csv_clear_data(UserData *user) {
user->col = 0; user->col = 0;
user->total_rows = 0; user->total_rows = 0;
user->max_cols = 0; user->max_cols = 0;
for(int i = 0; i < CSV_MAX_COLS; i++)
{
user->col_widths[i] = 0;
}
} }
// ============ 解析后创建 LVGL 表格 ============ // ============ 解析后创建 LVGL 表格 ============
int parse_csv_string(lv_obj_t *container, const char *csv_data, UserData *user) int parse_csv_string(lv_obj_t *container, const char *csv_data, UserData *user)
{ {
if (csv_data == NULL) { if (csv_data == NULL) {
rt_kprintf("[E] NOT DATA\n"); //rt_kprintf("[E] NOT DATA\n");
return -1; return -1;
} }
if (user == NULL) { if (user == NULL) {
rt_kprintf("[E] NOT USER DATA\n"); //rt_kprintf("[E] NOT USER DATA\n");
return -1; return -1;
} }
// 初始化 UserData // 初始化 UserData
csv_clear_data(user); csv_clear_data(user);
if (container != NULL) { /*if (container != NULL) {
lv_obj_set_size(container, LV_PCT(100), LV_SIZE_CONTENT); lv_obj_set_size(container, LV_PCT(100), LV_SIZE_CONTENT);
lv_obj_set_style_pad_all(container, 0, LV_PART_MAIN); lv_obj_set_style_pad_all(container, 0, LV_PART_MAIN);
} }*/
struct csv_parser parser; struct csv_parser parser;
csv_init(&parser, 0); csv_init(&parser, 0);
size_t data_len = rt_strlen(csv_data); size_t data_len = rt_strlen(csv_data);
if (csv_parse(&parser, csv_data, data_len, field_callback, row_callback, user) != data_len) { if (csv_parse(&parser, csv_data, data_len, field_callback, row_callback, user) != data_len) {
rt_kprintf("[E] ERR: %s\n", csv_strerror(csv_error(&parser))); //rt_kprintf("[E] ERR: %s\n", csv_strerror(csv_error(&parser)));
csv_fini(&parser, field_callback, row_callback, user); csv_fini(&parser, field_callback, row_callback, user);
csv_free(&parser); csv_free(&parser);
return -1; return -1;
@ -144,6 +166,9 @@ static UserData *user = NULL;
extern struct rt_memheap sdram_heap; extern struct rt_memheap sdram_heap;
int parse_csv_to_table(lv_obj_t *container, const char *csv_data) { int parse_csv_to_table(lv_obj_t *container, const char *csv_data) {
//清楚点击行
g_selected_row = -1;
if (container == NULL || csv_data == NULL) { if (container == NULL || csv_data == NULL) {
return -1; return -1;
} }
@ -161,6 +186,12 @@ int parse_csv_to_table(lv_obj_t *container, const char *csv_data) {
lv_table_set_col_cnt(container,user->max_cols); lv_table_set_col_cnt(container,user->max_cols);
lv_table_set_row_cnt(container,user->total_rows); lv_table_set_row_cnt(container,user->total_rows);
// 设置列宽
for (int col = 0; col < user->max_cols; col++) {
lv_table_set_col_width(container, col, user->col_widths[col]);
//rt_kprintf("COL=%d W=%d\n", col, user->col_widths[col]);
}
// 填充表格数据 // 填充表格数据
for (int i = 0; i < user->total_rows; i++) { for (int i = 0; i < user->total_rows; i++) {
for (int j = 0; j < user->max_cols; j++) { for (int j = 0; j < user->max_cols; j++) {

4
applications/lvgl/ui_data_labels.c

@ -305,10 +305,6 @@ char* get_time_str(char *buf, size_t size)
int Work_Program_DATA=0; int Work_Program_DATA=0;
char select_data_ui[4096]= {0}; char select_data_ui[4096]= {0};
void Work_Program_ui(void) void Work_Program_ui(void)
{ {
Work_Program_DATA = ~Work_Program_DATA; Work_Program_DATA = ~Work_Program_DATA;

7
applications/lvgl/ui_data_labels.h

@ -10,11 +10,10 @@
#ifndef APPLICATIONS_LVGL_UI_DATA_LABELS_H_ #ifndef APPLICATIONS_LVGL_UI_DATA_LABELS_H_
#define APPLICATIONS_LVGL_UI_DATA_LABELS_H_ #define APPLICATIONS_LVGL_UI_DATA_LABELS_H_
#define select_WorkOrder_DATA "SELECT WorkOrder,Dyelot,\ #define select_WorkOrder_DATA "SELECT WorkOrder AS 工单,ProgramName AS 工艺 ,Dyelot || '@' || ReDye AS 领料单,\
ReDye,StartTime,EndTime,ProgramName,Time,lock,State,\ StartTime AS ,EndTime AS ,Time AS ,lock AS ,State AS ,USER AS FROM WorkOrder WHERE State=101 AND EndTime > "
USER FROM WorkOrder WHERE State=101 AND EndTime > "
#define select_Program_DATA "SELECT ProgramName,Step,Time FROM ProgramName" #define select_Program_DATA "SELECT ProgramName AS 工艺 ,Step AS 步骤,Time AS 预计时间 FROM ProgramName"
typedef struct { typedef struct {
char WorkOrder[32]; char WorkOrder[32];

Loading…
Cancel
Save