mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
c60ed68e94
* adding micropython examples * adding micropython examples
9 lines
105 B
Python
9 lines
105 B
Python
# Create an Arc
|
|
arc = lv.arc(lv.scr_act())
|
|
arc.set_end_angle(200)
|
|
arc.set_size(150, 150)
|
|
arc.center()
|
|
|
|
|
|
|