code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
/** * @file lv_img_cache.c * */ /********************* * INCLUDES *********************/ #include "../misc/lv_assert.h" #include "lv_img_cache.h" #include "lv_img_decoder.h" #include "lv_draw_img.h" #include "../hal/lv_hal_tick.h" #include "../misc/lv_gc.h" /********************* * DEFINES **********...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/draw/lv_img_cache.c
C
apache-2.0
6,911
/** * @file lv_img_cache.h * */ #ifndef LV_IMG_CACHE_H #define LV_IMG_CACHE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "lv_img_decoder.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/draw/lv_img_cache.h
C
apache-2.0
2,370
/** * @file lv_img_decoder.c * */ /********************* * INCLUDES *********************/ #include "lv_img_decoder.h" #include "../misc/lv_assert.h" #include "../draw/lv_draw_img.h" #include "../misc/lv_ll.h" #include "../misc/lv_gc.h" /********************* * DEFINES *********************/ #define ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/draw/lv_img_decoder.c
C
apache-2.0
25,261
/** * @file lv_img_decoder.h * */ #ifndef LV_IMG_DECODER_H #define LV_IMG_DECODER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../lv_conf_internal.h" #include <stdint.h> #include "lv_img_buf.h" #include "../misc/lv_fs.h" #include "../misc/lv_t...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/draw/lv_img_decoder.h
C
apache-2.0
9,939
CSRCS += $(shell find -L $(LVGL_DIR)/$(LVGL_DIR_NAME)/src/extra -name \*.c)
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/extra.mk
Makefile
apache-2.0
76
/** * @file lv_flex.c * */ /********************* * INCLUDES *********************/ #include "../lv_layouts.h" #if LV_USE_FLEX /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ typedef struct { lv_flex_align_t main_place; ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/layouts/flex/lv_flex.c
C
apache-2.0
21,804
/** * @file lv_flex.h * */ #ifndef LV_FLEX_H #define LV_FLEX_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_FLEX /********************* * DEFINES *********************/ #define LV_OBJ_FLAG_FLEX_IN_NEW_T...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/layouts/flex/lv_flex.h
C
apache-2.0
5,334
/** * @file lv_grid.c * */ /********************* * INCLUDES *********************/ #include "../lv_layouts.h" #if LV_USE_GRID /********************* * DEFINES *********************/ /** * Some helper defines */ #define IS_FR(x) (x >= LV_COORD_MAX - 100) #define IS_CONTENT(x) (x == LV_COORD...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/layouts/grid/lv_grid.c
C
apache-2.0
25,275
/** * @file lv_grid.h * */ #ifndef LV_GRID_H #define LV_GRID_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_GRID /********************* * DEFINES *********************/ /** * Can be used track size to m...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/layouts/grid/lv_grid.h
C
apache-2.0
7,185
/** * @file lv_layouts.h * */ #ifndef LV_LAYOUTS_H #define LV_LAYOUTS_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "flex/lv_flex.h" #include "grid/lv_grid.h" /********************* * DEFINES *********************/ /*********************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/layouts/lv_layouts.h
C
apache-2.0
708
/** * @file lv_bmp.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_BMP #include <string.h> /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ typedef struct { lv_fs_file...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/bmp/lv_bmp.c
C
apache-2.0
6,568
/** * @file lv_templ.h * */ #ifndef LV_BMP_H #define LV_BMP_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lv_conf_internal.h" #if LV_USE_BMP /********************* * DEFINES *********************/ /********************** * ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/bmp/lv_bmp.h
C
apache-2.0
606
/** * @file lv_freetype.c * */ /********************* * INCLUDES *********************/ #include "lv_freetype.h" #if LV_USE_FREETYPE #include "ft2build.h" #include FT_FREETYPE_H #include FT_GLYPH_H #include FT_CACHE_H #include FT_SIZES_H /********************* * DEFINES *********************/ /****...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/freetype/lv_freetype.c
C
apache-2.0
13,754
/** * @file lv_freetype.h * */ #ifndef LV_FREETYPE_H #define LV_FREETYPE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_FREETYPE /********************* * DEFINES *********************/ /********************** ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/freetype/lv_freetype.h
C
apache-2.0
1,998
/** * @file lv_fs_fatfs.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_FS_FATFS != '\0' #include "ff.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /****************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c
C
apache-2.0
8,178
/** * @file lv_fs_posix.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_FS_POSIX != '\0' #include <fcntl.h> #include <stdio.h> #ifndef WIN32 #include <dirent.h> #include <unistd.h> #else #include <windows.h> #endif /********************* * DEFINE...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/fsdrv/lv_fs_posix.c
C
apache-2.0
9,137
/** * @file lv_fs_stdio.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_FS_STDIO != '\0' #include <stdio.h> #ifndef WIN32 #include <dirent.h> #include <unistd.h> #else #include <windows.h> #endif /********************* * DEFINES ****************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/fsdrv/lv_fs_stdio.c
C
apache-2.0
9,018
/** * @file lv_fs_win32.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_FS_WIN32 != '\0' #include <windows.h> /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /**********...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/fsdrv/lv_fs_win32.c
C
apache-2.0
12,876
/** * @file lv_fsdrv.h * */ #ifndef LV_FSDRV_H #define LV_FSDRV_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lv_conf_internal.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/fsdrv/lv_fsdrv.h
C
apache-2.0
815
#include "gifdec.h" #include "../../../misc/lv_log.h" #include "../../../misc/lv_mem.h" #include "../../../misc/lv_color.h" #if LV_USE_GIF #include <stdlib.h> #include <string.h> #include <stdbool.h> #define MIN(A, B) ((A) < (B) ? (A) : (B)) #define MAX(A, B) ((A) > (B) ? (A) : (B)) typedef struct Entry { uint16...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/gif/gifdec.c
C
apache-2.0
18,404
#ifndef GIFDEC_H #define GIFDEC_H #include <stdint.h> #include "../../../misc/lv_fs.h" #if LV_USE_GIF typedef struct gd_Palette { int size; uint8_t colors[0x100 * 3]; } gd_Palette; typedef struct gd_GCE { uint16_t delay; uint8_t tindex; uint8_t disposal; int input; int transparency; } gd...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/gif/gifdec.h
C
apache-2.0
1,262
/** * @file lv_gifenc.c * */ /********************* * INCLUDES *********************/ #include "lv_gif.h" #if LV_USE_GIF #include "gifdec.h" /********************* * DEFINES *********************/ #define MY_CLASS &lv_gif_class /********************** * TYPEDEFS **********************/ ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/gif/lv_gif.c
C
apache-2.0
3,864
/** * @file lv_gif.h * */ #ifndef LV_GIF_H #define LV_GIF_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_GIF #include "gifdec.h" /********************* * DEFINES *********************/ /*********************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/gif/lv_gif.h
C
apache-2.0
908
/** * @file lv_libs.h * */ #ifndef LV_LIBS_H #define LV_LIBS_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "bmp/lv_bmp.h" #include "fsdrv/lv_fsdrv.h" #include "png/lv_png.h" #include "gif/lv_gif.h" #include "qrcode/lv_qrcode.h" #include "sjpg/lv_...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/lv_libs.h
C
apache-2.0
756
// // Created by liujuncheng on 2022/1/18. // #ifndef LVGL_MAC_MOKEY_H #define LVGL_MAC_MOKEY_H #ifdef __cplusplus extern "C" { #endif void lv_monkey_init(); #ifdef __cplusplus } #endif #endif //LVGL_MAC_MOKEY_H
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/monkey/mokey.h
C
apache-2.0
217
// // Created by liujuncheng on 2022/1/18. // #include <stdbool.h> #include <stdlib.h> #include "../../../lvgl.h" static int last_monkey_x = 0; static int last_monkey_y = 0; static bool press = false; static void monkey_touch_read(lv_indev_drv_t* indev_drv, lv_indev_data_t* data) { (void)indev_drv; /*Unused*/ ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/monkey/monkey.c
C
apache-2.0
914
/* LodePNG version 20201017 Copyright (c) 2005-2020 Lode Vandevenne This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, incl...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/png/lodepng.c
C
apache-2.0
263,733
/* LodePNG version 20201017 Copyright (c) 2005-2020 Lode Vandevenne This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, incl...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/png/lodepng.h
C++
apache-2.0
95,630
/** * @file lv_png.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_PNG #include "lv_png.h" #include "lodepng.h" #include <stdlib.h> /********************* * DEFINES *********************/ /********************** * TYPEDEFS ***************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/png/lv_png.c
C
apache-2.0
8,374
/** * @file lv_png.h * */ #ifndef LV_PNG_H #define LV_PNG_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lv_conf_internal.h" #if LV_USE_PNG /********************* * DEFINES *********************/ /********************** * ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/png/lv_png.h
C
apache-2.0
664
/** * @file lv_qrcode.c * */ /********************* * INCLUDES *********************/ #include "lv_qrcode.h" #if LV_USE_QRCODE #include "qrcodegen.h" /********************* * DEFINES *********************/ #define QR_SIZE 140 /********************** * TYPEDEFS **********************/ /*...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/qrcode/lv_qrcode.c
C
apache-2.0
4,875
/** * @file lv_qrcode * */ #ifndef LV_QRCODE_H #define LV_QRCODE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_QRCODE /********************* * DEFINES *********************/ extern const lv_obj_class_t lv_qrc...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/qrcode/lv_qrcode.h
C
apache-2.0
1,484
/* * QR Code generator library (C) * * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the S...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/qrcode/qrcodegen.c
C
apache-2.0
40,066
/* * QR Code generator library (C) * * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the S...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/qrcode/qrcodegen.h
C
apache-2.0
14,190
/** * @file lv_rlottie.c * */ /********************* * INCLUDES *********************/ #include "lv_rlottie.h" #if LV_USE_RLOTTIE /********************* * DEFINES *********************/ #define MY_CLASS &lv_rlottie_class /********************** * TYPEDEFS **********************/ /***********...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/rlottie/lv_rlottie.c
C
apache-2.0
4,784
/** * @file lv_rlottie.h * */ #if LV_USE_RLOTTIE #ifndef LV_RLOTTIE_H #define LV_RLOTTIE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #include <rlottie_capi.h> /********************* * DEFINES *********************/ /*...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/rlottie/lv_rlottie.h
C
apache-2.0
1,197
/** * @file lv_sjpg.c * */ /*---------------------------------------------------------------------------------------------------------------------------------- / Added normal JPG support [7/10/2020] / ---------- / SJPEG is a custom created modified JPEG file format for small embedded platforms. / It wil...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/sjpg/lv_sjpg.c
C
apache-2.0
32,938
/** * @file lv_sjpg.h * */ #ifndef LV_SJPEG_H #define LV_SJPEG_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #if LV_USE_SJPG /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/sjpg/lv_sjpg.h
C
apache-2.0
568
/*----------------------------------------------------------------------------/ / TJpgDec - Tiny JPEG Decompressor R0.03 (C)ChaN, 2021 /-----------------------------------------------------------------------------/ / The TJpgDec is a generic JPEG decompressor module for tiny embedded systems. / Thi...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/sjpg/tjpgd.c
C
apache-2.0
43,135
/*----------------------------------------------------------------------------/ / TJpgDec - Tiny JPEG Decompressor R0.03 include file (C)ChaN, 2021 /----------------------------------------------------------------------------*/ #ifndef DEF_TJPGDEC #define DEF_TJPGDEC #ifdef __cplusplus extern "C" { #endif #in...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/sjpg/tjpgd.h
C
apache-2.0
3,345
/*----------------------------------------------*/ /* TJpgDec System Configurations R0.03 */ /*----------------------------------------------*/ #define JD_SZBUF 512 /* Specifies size of stream input buffer */ #define JD_FORMAT 0 /* Specifies output pixel format. / 0: RGB888 (24-bit/pix) / 1: RGB565 (16-b...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/libs/sjpg/tjpgdcnf.h
C
apache-2.0
845
/** * @file lv_extra.c * */ /********************* * INCLUDES *********************/ #include "../lvgl.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES **********************/ ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/lv_extra.c
C
apache-2.0
1,237
/** * @file lv_extra.h * */ #ifndef LV_EXTRA_H #define LV_EXTRA_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/lv_extra.h
C
apache-2.0
579
/** * @file lv_others.h * */ #ifndef LV_OTHERS_H #define LV_OTHERS_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "snapshot/lv_snapshot.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS *...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/others/lv_others.h
C
apache-2.0
547
/** * @file lv_snapshot.c * */ /********************* * INCLUDES *********************/ #include "lv_snapshot.h" #if LV_USE_SNAPSHOT #include <stdbool.h> #include "../../../core/lv_disp.h" #include "../../../core/lv_refr.h" /********************* * DEFINES *********************/ /*******************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/others/snapshot/lv_snapshot.c
C
apache-2.0
5,836
/** * @file lv_snapshot.h * */ #ifndef LV_SNAPSHOT_H #define LV_SNAPSHOT_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include <stdint.h> #include <stddef.h> #include "../../../lv_conf_internal.h" #include "../../../core/lv_obj.h" /********************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/others/snapshot/lv_snapshot.h
C
apache-2.0
2,021
/** * @file lv_theme_basic.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" /*To see all the widgets*/ #if LV_USE_THEME_BASIC #include "lv_theme_basic.h" #include "../../../misc/lv_gc.h" /********************* * DEFINES *********************/ #define COLOR...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/themes/basic/lv_theme_basic.c
C
apache-2.0
14,132
/** * @file lv_theme_basic.h * */ #ifndef LV_THEME_BASIC_H #define LV_THEME_BASIC_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_THEME_BASIC /********************* * DEFINES *********************/ /***...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/themes/basic/lv_theme_basic.h
C
apache-2.0
789
/** * @file lv_theme_default.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" /*To see all the widgets*/ #if LV_USE_THEME_DEFAULT #include "lv_theme_default.h" #include "../../../misc/lv_gc.h" /********************* * DEFINES *********************/ #define ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/themes/default/lv_theme_default.c
C
apache-2.0
43,578
/** * @file lv_theme_default.h * */ #ifndef LV_THEME_DEFAULT_H #define LV_THEME_DEFAULT_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_THEME_DEFAULT /********************* * DEFINES ********************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/themes/default/lv_theme_default.h
C
apache-2.0
1,326
/** * @file lv_themes.h * */ #ifndef LV_THEMES_H #define LV_THEMES_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "default/lv_theme_default.h" #include "mono/lv_theme_mono.h" #include "basic/lv_theme_basic.h" /********************* * DEFINE...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/themes/lv_themes.h
C
apache-2.0
617
/** * @file lv_theme_mono.c * */ /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_THEME_MONO #include "lv_theme_mono.h" #include "../../../misc/lv_gc.h" /********************* * DEFINES *********************/ #define COLOR_FG dark_bg ? lv_color_wh...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/themes/mono/lv_theme_mono.c
C
apache-2.0
18,463
/** * @file lv_theme_mono.h * */ #ifndef LV_USE_THEME_MONO_H #define LV_USE_THEME_MONO_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_THEME_MONO /********************* * DEFINES *********************/ ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/themes/mono/lv_theme_mono.h
C
apache-2.0
934
/** * @file lv_animimg.c * */ /********************* * INCLUDES *********************/ #include "lv_animimg.h" #if LV_USE_ANIMIMG != 0 /*Testing of dependencies*/ #if LV_USE_IMG == 0 #error "lv_animimg: lv_img is required. Enable it in lv_conf.h (LV_USE_IMG 1) " #endif #include "../../../misc/lv_asser...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/animimg/lv_animimg.c
C
apache-2.0
3,442
/** * @file lv_animimg.h * */ #ifndef LV_ANIM_IMG_H #define LV_ANIM_IMG_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_ANIMIMG != 0 /*Testing of dependencies*/ #if LV_USE_IMG == 0 #error "lv_animimg: lv_img is requir...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/animimg/lv_animimg.h
C
apache-2.0
2,170
/** * @file lv_calendar.c * */ /********************* * INCLUDES *********************/ #include "lv_calendar.h" #include "../../../lvgl.h" #if LV_USE_CALENDAR #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define LV_CALENDAR_CTRL_TODAY LV_BTNMATRI...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/calendar/lv_calendar.c
C
apache-2.0
12,510
/** * @file lv_calendar.h * */ #ifndef LV_CALENDAR_H #define LV_CALENDAR_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../widgets/lv_btnmatrix.h" #if LV_USE_CALENDAR /********************* * DEFINES *********************/ /******...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/calendar/lv_calendar.h
C
apache-2.0
4,693
/** * @file lv_calendar_header_arrow.c * */ /********************* * INCLUDES *********************/ #include "lv_calendar_header_arrow.h" #if LV_USE_CALENDAR_HEADER_ARROW #include "lv_calendar.h" #include "../../../widgets/lv_btn.h" #include "../../../widgets/lv_label.h" #include "../../layouts/flex/lv_fle...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/calendar/lv_calendar_header_arrow.c
C
apache-2.0
4,219
/** * @file lv_calendar_header_arrow.h * */ #ifndef LV_CALENDAR_HEADER_ARROW_H #define LV_CALENDAR_HEADER_ARROW_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_CALENDAR_HEADER_ARROW /********************* * ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/calendar/lv_calendar_header_arrow.h
C
apache-2.0
963
/** * @file lv_calendar_obj_dropdown.c * */ /********************* * INCLUDES *********************/ #include "lv_calendar_header_dropdown.h" #if LV_USE_CALENDAR_HEADER_DROPDOWN #include "lv_calendar.h" #include "../../../widgets/lv_dropdown.h" #include "../../layouts/flex/lv_flex.h" /*********************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/calendar/lv_calendar_header_dropdown.c
C
apache-2.0
4,544
/** * @file lv_calendar_header_dropdown.h * */ #ifndef LV_CALENDAR_HEADER_DROPDOWN_H #define LV_CALENDAR_HEADER_DROPDOWN_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_CALENDAR_HEADER_DROPDOWN /****************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/calendar/lv_calendar_header_dropdown.h
C
apache-2.0
981
/** * @file lv_chart.c * */ /********************* * INCLUDES *********************/ #include "lv_chart.h" #if LV_USE_CHART != 0 #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define MY_CLASS &lv_chart_class #define LV_CHART_HDIV_DEF 3 #define LV_CHART...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/chart/lv_chart.c
C
apache-2.0
61,241
/** * @file lv_chart.h * */ #ifndef LV_CHART_H #define LV_CHART_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_CHART != 0 /********************* * DEFINES *********************/ /**Default value of points. Ca...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/chart/lv_chart.h
C
apache-2.0
15,708
/** * @file lv_colorwheel.c * * Based on the work of @AloyseTech and @paulpv. */ /********************* * INCLUDES *********************/ #include "lv_colorwheel.h" #if LV_USE_COLORWHEEL #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define MY_CLASS &l...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/colorwheel/lv_colorwheel.c
C
apache-2.0
23,485
/** * @file lv_colorwheel.h * */ #ifndef LV_COLORWHEEL_H #define LV_COLORWHEEL_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_COLORWHEEL /********************* * DEFINES *********************/ /**************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/colorwheel/lv_colorwheel.h
C
apache-2.0
3,386
/** * @file lv_imgbtn.c * */ /********************* * INCLUDES *********************/ #include "lv_imgbtn.h" #if LV_USE_IMGBTN != 0 /********************* * DEFINES *********************/ #define MY_CLASS &lv_imgbtn_class /********************** * TYPEDEFS **********************/ /********...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.c
C
apache-2.0
12,047
/** * @file lv_imgbtn.h * */ #ifndef LV_IMGBTN_H #define LV_IMGBTN_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_IMGBTN != 0 /********************* * DEFINES *********************/ typedef enum { LV_IMGBT...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.h
C
apache-2.0
3,738
/** * @file lv_keyboard.c * */ /********************* * INCLUDES *********************/ #include "lv_keyboard.h" #if LV_USE_KEYBOARD #include "../../../widgets/lv_textarea.h" #include "../../../misc/lv_assert.h" #include <stdlib.h> /********************* * DEFINES *********************/ #define MY...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/keyboard/lv_keyboard.c
C
apache-2.0
16,132
/** * @file lv_keyboard.h * */ #ifndef LV_KEYBOARD_H #define LV_KEYBOARD_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../widgets/lv_btnmatrix.h" #if LV_USE_KEYBOARD /*Testing of dependencies*/ #if LV_USE_BTNMATRIX == 0 #error "lv_kb: lv...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/keyboard/lv_keyboard.h
C
apache-2.0
4,357
/** * @file lv_led.c * */ /********************* * INCLUDES *********************/ #include "lv_led.h" #if LV_USE_LED #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define MY_CLASS &lv_led_class /********************** * TYPEDEFS ***************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/led/lv_led.c
C
apache-2.0
6,532
/** * @file lv_led.h * */ #ifndef LV_LED_H #define LV_LED_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_LED /********************* * DEFINES *********************/ /** Brightness when the LED if OFF */ #ifnd...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/led/lv_led.h
C
apache-2.0
2,318
/** * @file lv_list.c * */ /********************* * INCLUDES *********************/ #include "lv_list.h" #include "../../../core/lv_disp.h" #include "../../../widgets/lv_label.h" #include "../../../widgets/lv_img.h" #include "../../../widgets/lv_btn.h" #if LV_USE_LIST /********************* * DEFINES...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/list/lv_list.c
C
apache-2.0
2,731
/** * @file lv_win.h * */ #ifndef LV_LIST_H #define LV_LIST_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #include "../../layouts/flex/lv_flex.h" #if LV_USE_LIST /********************* * DEFINES *****************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/list/lv_list.h
C
apache-2.0
1,021
/** * @file lv_widgets.h * */ #ifndef LV_WIDGETS_H #define LV_WIDGETS_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "animimg/lv_animimg.h" #include "calendar/lv_calendar.h" #include "calendar/lv_calendar_header_arrow.h" #include "calendar/lv_cale...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/lv_widgets.h
C
apache-2.0
1,098
/** * @file lv_meter.c * */ /********************* * INCLUDES *********************/ #include "lv_meter.h" #if LV_USE_METER != 0 #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define MY_CLASS &lv_meter_class /********************** * TYPEDEFS **...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/meter/lv_meter.c
C
apache-2.0
27,266
/** * @file lv_meter.h * */ #ifndef LV_METER_H #define LV_METER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_METER != 0 /*Testing of dependencies*/ #if LV_DRAW_COMPLEX == 0 #error "lv_meter: Complex drawing is requ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/meter/lv_meter.h
C
apache-2.0
8,603
/** * @file lv_msgbox.c * */ /********************* * INCLUDES *********************/ #include "lv_msgbox.h" #if LV_USE_MSGBOX #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define LV_MSGBOX_FLAG_AUTO_PARENT LV_OBJ_FLAG_WIDGET_1 /*Mark that the ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/msgbox/lv_msgbox.c
C
apache-2.0
6,380
/** * @file lv_mbox.h * */ #ifndef LV_MSGBOX_H #define LV_MSGBOX_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_MSGBOX /*Testing of dependencies*/ #if LV_USE_BTNMATRIX == 0 #error "lv_mbox: lv_btnm is required. Enabl...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/msgbox/lv_msgbox.h
C
apache-2.0
2,376
/** * @file lv_span.c * */ /********************* * INCLUDES *********************/ #include "lv_span.h" #if LV_USE_SPAN != 0 #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define MY_CLASS &lv_spangroup_class /********************** * TYPEDEFS ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/span/lv_span.c
C
apache-2.0
36,057
/** * @file lv_span.h * */ #ifndef LV_SPAN_H #define LV_SPAN_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_SPAN != 0 /********************* * DEFINES *********************/ #ifndef LV_SPAN_SNIPPET_STACK_SIZE ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/span/lv_span.h
C
apache-2.0
5,993
/** * @file lv_spinbox.c * */ /********************* * INCLUDES *********************/ #include "lv_spinbox.h" #if LV_USE_SPINBOX #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define MY_CLASS &lv_spinbox_class /********************** * TYPEDE...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/spinbox/lv_spinbox.c
C
apache-2.0
14,988
/** * @file lv_spinbox.h * */ #ifndef LV_SPINBOX_H #define LV_SPINBOX_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_SPINBOX /*Testing of dependencies*/ #if LV_USE_TEXTAREA == 0 #error "lv_spinbox: lv_ta is required....
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/spinbox/lv_spinbox.h
C
apache-2.0
4,592
/** * @file lv_spinner.c * */ /********************* * INCLUDES *********************/ #include "lv_spinner.h" #if LV_USE_SPINNER /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/spinner/lv_spinner.c
C
apache-2.0
2,420
/** * @file lv_spinner.h * */ #ifndef LV_SPINNER_H #define LV_SPINNER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_SPINNER /*Testing of dependencies*/ #if LV_USE_ARC == 0 #error "lv_spinner: lv_arc is required. Ena...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/spinner/lv_spinner.h
C
apache-2.0
860
/** * @file lv_tabview.c * */ /********************* * INCLUDES *********************/ #include "lv_tabview.h" #if LV_USE_TABVIEW #include "../../../misc/lv_assert.h" /********************* * DEFINES *********************/ #define MY_CLASS &lv_tabview_class /********************** * TYPEDE...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/tabview/lv_tabview.c
C
apache-2.0
9,311
/** * @file lv_templ.h * */ #ifndef LV_TABVIEW_H #define LV_TABVIEW_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" #if LV_USE_TABVIEW /********************* * DEFINES *********************/ /********************** * ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/tabview/lv_tabview.h
C
apache-2.0
1,158
/** * @file lv_tileview.c * */ /********************* * INCLUDES *********************/ #include "lv_tileview.h" #if LV_USE_TILEVIEW /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPE...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/tileview/lv_tileview.c
C
apache-2.0
5,661
/** * @file lv_tileview.h * */ #ifndef LV_TILEVIEW_H #define LV_TILEVIEW_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../core/lv_obj.h" #if LV_USE_TILEVIEW /********************* * DEFINES *********************/ /***************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/tileview/lv_tileview.h
C
apache-2.0
1,469
/** * @file lv_win.c * */ /********************* * INCLUDES *********************/ #include "lv_win.h" #if LV_USE_WIN /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES ***********...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/win/lv_win.c
C
apache-2.0
2,723
/** * @file lv_win.h * */ #ifndef LV_WIN_H #define LV_WIN_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../../../lvgl.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS *****************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/extra/widgets/win/lv_win.h
C
apache-2.0
928
/** * @file lv_font.c * */ /********************* * INCLUDES *********************/ #include "lv_font.h" #include "../misc/lv_utils.h" #include "../misc/lv_log.h" #include "../misc/lv_assert.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS *******...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font.c
C
apache-2.0
2,163
/** * @file lv_font.h * */ #ifndef LV_FONT_H #define LV_FONT_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../lv_conf_internal.h" #include <stdint.h> #include <stddef.h> #include <stdbool.h> #include "lv_symbol_def.h" #include "../misc/lv_area....
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font.h
C
apache-2.0
6,242
CSRCS += lv_font.c CSRCS += lv_font_fmt_txt.c CSRCS += lv_font_loader.c CSRCS += lv_font_dejavu_16_persian_hebrew.c CSRCS += lv_font_montserrat_8.c CSRCS += lv_font_montserrat_10.c CSRCS += lv_font_montserrat_12.c CSRCS += lv_font_montserrat_12_subpx.c CSRCS += lv_font_montserrat_14.c CSRCS += lv_font_montserrat_16.c ...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font.mk
Makefile
apache-2.0
1,144
/******************************************************************************* * Size: 16 px * Bpp: 4 * Opts: --no-compress --no-prefilter --bpp 4 --size 16 --font DejaVuSans.ttf -r 0x20-0x7f,0x5d0-0x5ea,0x600-0x6FF,0xFB50-0xFDFF,0xFE70-0xFEFF --font FontAwesome5-Solid+Brands+Regular.woff -r 61441,61448,61451,6145...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c
C
apache-2.0
288,048
/** * @file lv_font_fmt_txt.c * */ /********************* * INCLUDES *********************/ #include "lv_font.h" #include "lv_font_fmt_txt.h" #include "../misc/lv_assert.h" #include "../misc/lv_types.h" #include "../misc/lv_gc.h" #include "../misc/lv_log.h" #include "../misc/lv_utils.h" #include "../misc/lv_...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font_fmt_txt.c
C
apache-2.0
18,243
/** * @file lv_font_fmt_txt.h * */ #ifndef LV_FONT_FMT_TXT_H #define LV_FONT_FMT_TXT_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include <stdint.h> #include <stddef.h> #include <stdbool.h> #include "lv_font.h" /********************* * DEFINES *...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font_fmt_txt.h
C
apache-2.0
7,832
/** * @file lv_font_loader.c * */ /********************* * INCLUDES *********************/ #include <stdint.h> #include <stdbool.h> #include "../lvgl.h" #include "../misc/lv_fs.h" #include "lv_font_loader.h" /********************** * TYPEDEFS **********************/ typedef struct { lv_fs_file_...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font_loader.c
C
apache-2.0
21,365
/** * @file lv_font_loader.h * */ #ifndef LV_FONT_LOADER_H #define LV_FONT_LOADER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ /********************* * DEFINES *********************/ /********************** * TYPEDEFS ********************...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font_loader.h
C
apache-2.0
620
/******************************************************************************* * Size: 10 px * Bpp: 4 * Opts: --no-compress --no-prefilter --bpp 4 --size 10 --font Montserrat-Medium.ttf -r 0x20-0x7F,0xB0,0x2022 --font FontAwesome5-Solid+Brands+Regular.woff -r 61441,61448,61451,61452,61452,61453,61457,61459,61461,6...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font_montserrat_10.c
C
apache-2.0
63,227
/******************************************************************************* * Size: 12 px * Bpp: 4 * Opts: --no-compress --no-prefilter --bpp 4 --size 12 --font Montserrat-Medium.ttf -r 0x20-0x7F,0xB0,0x2022 --font FontAwesome5-Solid+Brands+Regular.woff -r 61441,61448,61451,61452,61452,61453,61457,61459,61461,6...
YifuLiu/AliOS-Things
components/py_engine/engine/lib/lv_bindings/lvgl/src/font/lv_font_montserrat_12.c
C
apache-2.0
76,270