Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.7.0/docs/widgets/extra/
Dspinbox.md13 …spinbox)` increments/decrements the value of the Spinbox according to the currently selected digit.
19 …cursor to a specific digit to change on increment/decrement. For example position '0' sets the cur…
21 If an encoder is used as input device, the selected digit is shifted to the right by default whenev…
39 …T` With *Keypad* move the cursor left/right. With *Encoder* decrement/increment the selected digit.
41 - `LV_KEY_ENTER` With *Encoder* got the next digit. Jump to the first after the last.
/lvgl-3.7.0/src/misc/
Dlv_printf.c265 const char digit = (char)(value % base); in _ntoa_long() local
266 … buf[len++] = digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10; in _ntoa_long()
290 const char digit = (char)(value % base); in _ntoa_long_long() local
291 … buf[len++] = digit < 10 ? '0' + digit : (flags & FLAGS_UPPERCASE ? 'A' : 'a') + digit - 10; in _ntoa_long_long()
/lvgl-3.7.0/docs/
DCHANGELOG.md937 - feat(lv_spinbox) support both right-to-left and left-to-right digit steps when clicking encoder b…