fix(indev): decouple scroll momentum decay from indev read loop (lvgl… 063b22a Member kisvegaborcommentedSep 17, 2024 lvgl-botcommentedOct 2, 2024 We need some feedback on this issue. Now we mark this as "Abandoned" because there was no activity here for 14 days. ...
Embedded graphics library to create beautiful UIs for any MCU, MPU and display type. - lvgl/src/indev/lv_indev.c at 177b0bd04449dd1e61351de7204a00efe1fc97ed · lvgl/lvgl
void lv_port_indev_init(void) { /* Here you will find example implementation of input devices supported by LittelvGL: * - Touchpad * - Mouse (with cursor support) * - Keypad (supports GUI usage only with key) * - Encoder (supports GUI usage only with: left, righ...
Embedded graphics library to create beautiful UIs for any MCU, MPU and display type. - lvgl/src/core/lv_indev_scroll.h at d34958f5889d8da73d2c60d48818fea3d5f5501c · lvgl/lvgl
Embedded graphics library to create beautiful UIs for any MCU, MPU and display type. - lvgl/docs/porting/indev.rst at 84b28ff688b9b8b33682191c37554194d5ae1950 · lvgl/lvgl
lv_indev_t*i=lv_indev_get_next(NULL); while(i) { indev_reset_core(i,obj); i=lv_indev_get_next(i); } indev_obj_act=NULL; Which just resets any active indev object and adds it to thereset_query: lvgl/src/indev/lv_indev.c ...
You can even see this in the indev indev_encoder_proc method: https://github.com/lvgl/lvgl/blob/master/src/indev/lv_indev.c#L1016. Further up in the method the key is used to manipulate the enc_diff field. And on the line that I linked you you can see that if the enc_diff is ...
data->state is used here : https://github.com/littlevgl/lvgl/blob/master/lv_core/lv_indev.c#L520 Member kisvegabor commented Nov 9, 2018 @AloyseTech You are right. I don't remember when it was changed. Anyway, I update the documentation. Thank you! Author MichaelVLV commented Nov 9...
feat(indev): add scroll_time and scroll_throw setter #6723 Merged FASTSHIFT merged 2 commits into lvgl:master from HokageM:master Aug 23, 2024 Conversation 0 Commits 2 Checks 20 Files changed Conversation Contributor HokageM commented Aug 22, 2024 Solves: #6707 Add the API functions lv_...
Sign in Sign up lvgl/lv_binding_micropythonPublic Notifications Fork167 Star266 Code Issues41 Pull requests6 Actions Projects Security Insights Commit Permalink use updated lv_indev_t name Browse files master (#350) liamHowattcommittedJul 19, 2024 ...