/******************************************************************************* * Size: 8 px * Bpp: 1 * Opts: ******************************************************************************/ #pragma once #include "lvgl.h" #ifndef APP_ICON_8 #define APP_ICON_8 1 #endif #if APP_ICON_8 /*----------------- * BITMAPS *----------------*/ /*Store the image of the glyphs*/ static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { /* U+E1CB "" */ 0x38, 0x31, 0x88, 0xfa, 0x49, 0x54, 0x44, 0x10, 0xf8, /* U+E1CC "" */ 0x80, 0x1f, 0xa, 0x22, 0x6b, 0xd4, 0x44, 0xd0, 0xc8, 0x1, /* U+E29E "" */ 0xe, 0x4, 0xa8, 0x32, 0x18, 0xe, 0xd, 0x8c, 0x7c, /* U+F1EB "" */ 0x1e, 0x18, 0x68, 0x4, 0x78, 0x21, 0x0, 0x0, 0xc0, 0x0, /* U+F6AA "" */ 0xc0, /* U+F6AB "" */ 0x79, 0x8, 0x1, 0x80, /* U+F354 "" */ 0x38, 0x28, 0x28, 0x28, 0xee, 0x82, 0x44, 0x28, 0x10, /* U+F357 "" */ 0x8, 0x14, 0x22, 0x41, 0x77, 0x14, 0x14, 0x14, 0x1c, /* U+F354 "" */ 0x31, 0x45, 0x37, 0x85, 0x23, 0x0, /* U+F357 "" */ 0x31, 0x28, 0x7b, 0x30, 0xc3, 0x0}; /*--------------------- * GLYPH DESCRIPTION *--------------------*/ static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, {.bitmap_index = 0, .adv_w = 160, .box_w = 10, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 9, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 19, .adv_w = 128, .box_w = 9, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 28, .adv_w = 160, .box_w = 10, .box_h = 8, .ofs_x = 0, .ofs_y = -1}, {.bitmap_index = 38, .adv_w = 32, .box_w = 2, .box_h = 2, .ofs_x = 4, .ofs_y = -1}, {.bitmap_index = 39, .adv_w = 112, .box_w = 7, .box_h = 4, .ofs_x = 2, .ofs_y = 0}, {.bitmap_index = 48, .adv_w = 96, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = 0}, {.bitmap_index = 54, .adv_w = 96, .box_w = 6, .box_h = 7, .ofs_x = 0, .ofs_y = -1} }; /*--------------------- * CHARACTER MAPPING *--------------------*/ static const uint16_t unicode_list_0[] = {0x0, 0x1, 0xd3, 0x1020, 0x14df, 0x14e0}; /*Collect the unicode lists and glyph_id offsets*/ static const lv_font_fmt_txt_cmap_t cmaps[] = { {.range_start = 57803, .range_length = 5345, .glyph_id_start = 1, .unicode_list = unicode_list_0, .glyph_id_ofs_list = NULL, .list_length = 6, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY}}; /*-------------------- * ALL CUSTOM DATA *--------------------*/ #if LV_VERSION_CHECK(8, 0, 0) /*Store all the custom data of the font*/ static lv_font_fmt_txt_glyph_cache_t cache; static const lv_font_fmt_txt_dsc_t font_dsc = { #else static lv_font_fmt_txt_dsc_t font_dsc = { #endif .glyph_bitmap = glyph_bitmap, .glyph_dsc = glyph_dsc, .cmaps = cmaps, .kern_dsc = NULL, .kern_scale = 0, .cmap_num = 1, .bpp = 1, .kern_classes = 0, .bitmap_format = 0, #if LV_VERSION_CHECK(8, 0, 0) .cache = &cache #endif }; /*----------------- * PUBLIC FONT *----------------*/ /*Initialize a public general font descriptor*/ #if LV_VERSION_CHECK(8, 0, 0) const lv_font_t app_icon_8 = { #else lv_font_t app_icon_8 = { #endif .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ .line_height = 8, /*The maximum line height required by the font*/ .base_line = 1, /*Baseline measured from the bottom of the line*/ #if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) .subpx = LV_FONT_SUBPX_NONE, #endif #if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 .underline_position = -1, .underline_thickness = 0, #endif .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ }; #endif /*#if APP_ICON_8*/