feat(examples) add micropython versions of the external library examples (#2762)

Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com>
This commit is contained in:
Uli Raich
2021-11-25 03:18:15 +01:00
committed by GitHub
parent 81f7d50c45
commit cd197a8e49
12 changed files with 1617 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
#!/opt/bin/lv_micropython -i
import lvgl as lv
import display_driver
import fs_driver
info = lv.ft_info_t()
info.name ="./arial.ttf"
info.weight = 24
info.style = lv.FT_FONT_STYLE.NORMAL
info.font_init()
# Create style with the new font
style = lv.style_t()
style.init()
style.set_text_font(info.font)
style.set_text_align(lv.TEXT_ALIGN.CENTER)
# Create a label with the new style
label = lv.label(lv.scr_act())
label.add_style(style, 0)
label.set_text("Hello world\nI'm a font created with FreeType")
label.center()