luat_lvgl_fonts.h 566 B

1234567891011121314151617181920212223242526
  1. #ifndef LUAT_LIB_FONTS_H
  2. #define LUAT_LIB_FONTS_H
  3. #include "luat_base.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #include "../src/font/lv_font.h"
  8. LV_FONT_DECLARE(lv_font_opposans_m_8)
  9. LV_FONT_DECLARE(lv_font_opposans_m_10)
  10. LV_FONT_DECLARE(lv_font_opposans_m_12)
  11. LV_FONT_DECLARE(lv_font_opposans_m_14)
  12. LV_FONT_DECLARE(lv_font_opposans_m_16)
  13. LV_FONT_DECLARE(lv_font_opposans_m_18)
  14. LV_FONT_DECLARE(lv_font_opposans_m_20)
  15. LV_FONT_DECLARE(lv_font_opposans_m_22)
  16. LV_FONT_DECLARE(lv_font_simsun_42)
  17. LV_FONT_DECLARE(lv_font_simsun_48)
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif