Home
last modified time | relevance | path

Searched refs:ltr_label (Results 1 – 2 of 2) sorted by relevance

/lvgl-3.7.0/examples/widgets/label/
Dlv_example_label_3.py6 ltr_label = lv.label(lv.scr_act()) variable
7 ltr_label.set_text("In modern terminology, a microcontroller is similar to a system on a chip (SoC)…
14 ltr_label.set_style_text_font(ltr_label, lv.font_montserrat_16, 0)
17 ltr_label.set_style_text_font(font_montserrat_16, 0)
19 ltr_label.set_width(310)
20 ltr_label.align(lv.ALIGN.TOP_LEFT, 5, 5)
Dlv_example_label_3.c9 lv_obj_t * ltr_label = lv_label_create(lv_scr_act()); in lv_example_label_3() local
10 …lv_label_set_text(ltr_label, "In modern terminology, a microcontroller is similar to a system on a… in lv_example_label_3()
11 lv_obj_set_style_text_font(ltr_label, &lv_font_montserrat_16, 0); in lv_example_label_3()
12 lv_obj_set_width(ltr_label, 310); in lv_example_label_3()
13 lv_obj_align(ltr_label, LV_ALIGN_TOP_LEFT, 5, 5); in lv_example_label_3()