}/** * Create a button with a label and react on click event. */voidlv_example_get_started_1(void){lv_obj_t* btn =lv_btn_create(lv_scr_act());/*Add a button the current screen*/lv_obj_set_pos(btn,10,10);/*Set its position*/lv_obj_set_size(btn,120,50);/*Set its ...