2021-04-08 13:07:48 +02:00
|
|
|
#include "../lv_examples.h"
|
2022-11-22 14:37:51 +01:00
|
|
|
#if LV_BUILD_EXAMPLES && LV_USE_BTN
|
2021-02-16 20:41:11 +01:00
|
|
|
|
2022-11-22 14:37:51 +01:00
|
|
|
static void btn_event_cb(lv_event_t * e)
|
2021-02-16 20:41:11 +01:00
|
|
|
{
|
2022-11-22 14:37:51 +01:00
|
|
|
lv_event_code_t code = lv_event_get_code(e);
|
|
|
|
lv_obj_t * btn = lv_event_get_target(e);
|
|
|
|
if(code == LV_EVENT_CLICKED) {
|
|
|
|
static uint8_t cnt = 0;
|
|
|
|
cnt++;
|
|
|
|
|
|
|
|
/*Get the first child of the button which is the label and change its text*/
|
|
|
|
lv_obj_t * label = lv_obj_get_child(btn, 0);
|
|
|
|
lv_label_set_text_fmt(label, "Button: %d", cnt);
|
|
|
|
}
|
2021-05-31 12:49:49 +02:00
|
|
|
}
|
2021-02-16 20:41:11 +01:00
|
|
|
|
2021-05-31 12:49:49 +02:00
|
|
|
/**
|
2022-11-22 14:37:51 +01:00
|
|
|
* Create a button with a label and react on click event.
|
2021-05-31 12:49:49 +02:00
|
|
|
*/
|
|
|
|
void lv_example_get_started_2(void)
|
|
|
|
{
|
2023-09-14 20:12:31 +02:00
|
|
|
lv_obj_t * btn = lv_button_create(lv_scr_act()); /*Add a button the current screen*/
|
2022-11-22 14:37:51 +01:00
|
|
|
lv_obj_set_pos(btn, 10, 10); /*Set its position*/
|
|
|
|
lv_obj_set_size(btn, 120, 50); /*Set its size*/
|
2023-02-20 20:50:58 +01:00
|
|
|
lv_obj_add_event(btn, btn_event_cb, LV_EVENT_ALL, NULL); /*Assign a callback to the button*/
|
2021-02-16 20:41:11 +01:00
|
|
|
|
2022-11-22 14:37:51 +01:00
|
|
|
lv_obj_t * label = lv_label_create(btn); /*Add a label to the button*/
|
|
|
|
lv_label_set_text(label, "Button"); /*Set the labels text*/
|
2021-03-25 16:14:17 +01:00
|
|
|
lv_obj_center(label);
|
2021-02-16 20:41:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2022-11-22 14:37:51 +01:00
|
|
|
|