Inter font support
parent
ac3df0dfb0
commit
0df29efa04
Binary file not shown.
@ -1,14 +1,26 @@
|
||||
# Fonts
|
||||
|
||||
Generated with https://lvgl.io/tools/fontconverter
|
||||
Generated with https://lvgl.io/tools/fontconverter. Your best bet is finding a .tff file from google fonts. Using compression on a .c file appears to have issues.
|
||||
|
||||
|
||||
`inter_20.bin`: 20px 4 bpp font
|
||||
|
||||
Adding a custom font to the binary:
|
||||
|
||||
highlevel
|
||||
- Create `lv_font_my_26.c` using tool above
|
||||
- add font to lvgl/src/font
|
||||
- update lvgl.h with `#define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(lv_font_my_26)`
|
||||
- add font to lvgl/src/font submodule
|
||||
- update lv_conf.h with `#define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(lv_font_my_26)` If needed you can turn off montserrat fonts, and set a new default font.
|
||||
- Build and import using `lv.font_my_26`
|
||||
|
||||
|
||||
Example lv_conf.h
|
||||
```
|
||||
/*Optionally declare custom fonts here.
|
||||
*You can use these fonts as default font too and they will be available globally.
|
||||
*E.g. #define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(my_font_1) LV_FONT_DECLARE(my_font_2)*/
|
||||
#define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(lv_font_inter_16) LV_FONT_DECLARE(lv_font_inter_20) LV_FONT_DECLARE(lv_font_inter_28) LV_FONT_DECLARE(lv_font_inter_36)
|
||||
|
||||
/*Always set a default font*/
|
||||
// #define LV_FONT_DEFAULT &lv_font_montserrat_14
|
||||
#define LV_FONT_DEFAULT &lv_font_inter_16
|
||||
```
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in New Issue