Lines Matching refs:button
268 1. press of its button,
269 2. oong-press of its button,
276 - When you press the encoder on a simple object (like a button), it will be clicked.
280 - To leave edit mode, long press the button.
426 - :cpp:enumerator:`LV_KEY_ENTER`: will simulate press or pushing of the encoder button.
456 A *Hardware Button* here is an external button (switch) typically next to the screen
457 which is assigned to specific coordinates of the screen. If a button is pressed it
476 static uint32_t last_btn = 0; /* Store the last pressed button */
477 int btn_pr = my_btn_read(); /* Get the ID (0,1,2...) of the pressed button */
478 …if(btn_pr >= 0) { /* Is there a button press? (E.g. -1 indicated no button was press…
479 last_btn = btn_pr; /* Save the ID of the pressed button */
485 data->btn_id = last_btn; /* Save the last button */