add some logs

This commit is contained in:
Gabor Kiss-Vamosi
2021-02-28 15:02:00 +01:00
parent 468fdb4f74
commit df5a47871d
7 changed files with 22 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ static lv_obj_t * list1;
static void event_handler(lv_obj_t * obj, lv_event_t event)
{
if(event == LV_EVENT_CLICKED) {
LV_LOG_USER("Clicked: %s\n", lv_list_get_btn_text(list1, obj));
LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj));
}
}
void lv_example_list_1(void)