minor fixes

This commit is contained in:
Gabor Kiss-Vamosi
2021-03-11 12:21:03 +01:00
parent f63f3408eb
commit 751f1aa829
4 changed files with 11 additions and 12 deletions

View File

@@ -5,7 +5,7 @@
static void event_handler(lv_obj_t * obj, lv_event_t event)
{
if(event == LV_EVENT_CLICKED) {
LV_LOG_USER("Button: %d\n", lv_obj_get_child_id(obj));
LV_LOG_USER("Button %d clicked", lv_obj_get_child_id(obj));
}
}