Initial FilamentGauger firmware

This commit is contained in:
2026-04-13 17:02:28 +03:00
commit 93e55a7418
8 changed files with 2662 additions and 0 deletions

31
include/lv_conf.h Normal file
View File

@@ -0,0 +1,31 @@
#ifndef LV_CONF_H
#define LV_CONF_H
#define LV_COLOR_DEPTH 16
#define LV_MEM_SIZE (128U * 1024U)
#define LV_DEF_REFR_PERIOD 16
#define LV_USE_LOG 0
#define LV_FONT_MONTSERRAT_14 1
#define LV_FONT_MONTSERRAT_18 1
#define LV_FONT_MONTSERRAT_20 1
#define LV_FONT_MONTSERRAT_24 1
#define LV_FONT_MONTSERRAT_32 1
#define LV_FONT_MONTSERRAT_48 1
#define LV_FONT_DEFAULT &lv_font_montserrat_20
#define LV_USE_LABEL 1
#define LV_LABEL_LONG_TXT_HINT 1
#define LV_USE_BUTTON 1
#define LV_USE_BUTTONMATRIX 1
#define LV_USE_FLEX 1
#define LV_USE_KEYBOARD 1
#define LV_USE_OBSERVER 1
#define LV_USE_TEXTAREA 1
#define LV_USE_THEME_DEFAULT 1
#define LV_THEME_DEFAULT_DARK 1
#define LV_THEME_DEFAULT_GROW 0
#endif