mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
c751c11a87
After https://github.com/lvgl/lv_binding_micropython/pull/161 merged, it is no longer needed to cast the result of 'e.get_target()' Also, additional small fixes to allow CI improvements
32 lines
660 B
Python
32 lines
660 B
Python
def event_handler(e):
|
|
code = e.get_code()
|
|
obj = e.get_target()
|
|
if code == lv.EVENT.VALUE_CHANGED:
|
|
option = " "*10
|
|
obj.get_selected_str(option, len(option))
|
|
print("Selected month: " + option.strip())
|
|
|
|
#
|
|
# An infinite roller with the name of the months
|
|
#
|
|
|
|
roller1 = lv.roller(lv.scr_act())
|
|
roller1.set_options("\n".join([
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December"]),lv.roller.MODE.INFINITE)
|
|
|
|
roller1.set_visible_row_count(4)
|
|
roller1.center()
|
|
roller1.add_event_cb(event_handler, lv.EVENT.ALL, None)
|
|
|