里飞网

标题: lvgl 键盘 或 编码器输入问题 [打印本页]

作者: MsTS    时间: 2021-10-30 19:34
标题: lvgl 键盘 或 编码器输入问题
我的设备有四个按键分别为:up、down、ok、cancel。看了lvgl输入设备的几种类型,发现编码器方式比较适合,于是我使用了Using buttons with Encoder logic这种方式(如图一所示)
  1. /* Will be called by the library to read the mouse */
  2. static bool keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
  3. {
  4.     uint8_t act_key = keypad_get_key();
  5.     uint8_t last_diff = 0;
  6.     data->key = act_key;
  7.     if(act_key == LV_KEY_LEFT) data->enc_diff = -1 - last_diff;
  8.     if(act_key == LV_KEY_RIGHT) data->enc_diff = 1 - last_diff;
  9.     last_diff = data->enc_diff;
  10.     /*Return `false` because we are not buffering and no more data to read*/
  11.     return false;
  12. }
复制代码
这是我的read_cb函数

因为我只有4个按键,所以我想用编码器的Edit and navigate这个特性。可是目前只有left/right起效了(LV_EVENT_FOCUSED / LV_EVENT_DEFOCUSED 事件),确认/取消却不响应(LV_EVENT_CLICKED / LV_EVENT_CANCEL 事件),不知道为什么?




作者: 阿里兄    时间: 2021-11-1 08:49
不好意思,我没用过这个,你有没有给到确认/取消到LVGL,你自己测试下了。




欢迎光临 里飞网 (http://dz.lfly.xyz/) Powered by Discuz! X3.3