OpenEdv-开源电子网

 找回密码
 立即注册
查看: 3089|回复: 11

有没有哪位大佬移植过按键驱动的,littleVGL我想用按键来当导航键。

[复制链接]

12

主题

22

帖子

0

精华

初级会员

Rank: 2

积分
137
金钱
137
注册时间
2019-6-17
在线时间
48 小时
发表于 2020-6-24 11:28:00 | 显示全部楼层 |阅读模式
有没有哪位大佬移植过按键驱动的,littleVGL我想用按键来当导航键。
正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

0

主题

18

帖子

0

精华

初级会员

Rank: 2

积分
65
金钱
65
注册时间
2017-11-9
在线时间
9 小时
发表于 2020-6-29 12:52:07 | 显示全部楼层
仅仅是导航吗? 那就是注册一个类型LV_INDEV_TYPE_ENCODER的输入驱动就好了,自己根据驱动接口实现就好了。
回复 支持 反对

使用道具 举报

0

主题

3

帖子

0

精华

新手上路

积分
29
金钱
29
注册时间
2020-4-8
在线时间
7 小时
发表于 2020-6-30 14:20:34 | 显示全部楼层
Keypad and encoder
You can fully control the user interface without touchpad or mouse using a keypad or encoder(s). It works similar to the TAB key on the PC to select the element in an application or a web page.

Groups
The objects, you want to control with keypad or encoder, needs to be added to a Group. In every group, there is exactly one focused object which receives the pressed keys or the encoder actions. For example, if a Text area is focused and you press some letter on a keyboard, the keys will be sent and inserted into the text area. Similarly, if a Slider is focused and you press the left or right arrows, the slider's value will be changed.

You need to associate an input device with a group. An input device can send the keys to only one group but, a group can receive data from more than one input device too.

To create a group use lv_group_t * g = lv_group_create() and to add an object to the group use lv_group_add_obj(g, obj).

The associate a group with an input device use lv_indev_set_group(indev, g), where indev is the return value of lv_indev_drv_register()

Keys
There are some predefined keys which have special meaning:

LV_KEY_NEXT Focus on the next object

LV_KEY_PREV Focus on the previous object

LV_KEY_ENTER Triggers LV_EVENT_PRESSED/CLICKED/LONG_PRESSED etc. events

LV_KEY_UP Increase value or move upwards

LV_KEY_DOWN Decrease value or move downwards

LV_KEY_RIGHT Increase value or move the the right

LV_KEY_LEFT Decrease value or move the the left

LV_KEY_ESC Close or exit (E.g. close a Drop down list)

LV_KEY_DEL Delete (E.g. a character on the right in a Text area)

LV_KEY_BACKSPACE Delete a character on the left (E.g. in a Text area)

LV_KEY_HOME Go to the beginning/top (E.g. in a Text area)

LV_KEY_END Go to the end (E.g. in a Text area))

The most important special keys are LV_KEY_NEXT/PREV, LV_KEY_ENTER and LV_KEY_UP/DOWN/LEFT/RIGHT. In your read_cb function, you should translate some of your keys to these special keys to navigate in the group and interact with the selected object.

Usually, it's enough to use only LV_KEY_LEFT/RIGHT because most of the objects can be fully controlled with them.

With an encoder, you should use only LV_KEY_LEFT, LV_KEY_RIGHT, and LV_KEY_ENTER.

Edit and navigate mode
Since keypad has plenty of keys, it's easy to navigate between the objects and edit them using the keypad. But, the encoders have a limited number of "keys" hence, difficult to navigate using the default options. Navigate and Edit are created to avoid this problem with the encoders.

In Navigate mode, the encoders LV_KEY_LEFT/RIGHT is translated to LV_KEY_NEXT/PREV. Therefore the next or previous object will be selected by turning the encoder. Pressing LV_KEY_ENTER will change to Edit mode.

In Edit mode, LV_KEY_NEXT/PREV is usually used to edit the object. Depending on the object's type, a short or long press of LV_KEY_ENTER changes back to Navigate mode. Usually, an object which can not be pressed (like a Slider) leaves Edit mode on short click. But with object where short click has meaning (e.g. Button), long press is required.

Styling
If an object is focused either by clicking it via touchpad, or focused via an encoder or keypad it goes to LV_STATE_FOCUSED. Hence focused styles will be applied on it.

If te object goes to edit mode it goes to LV_STATE_FOCUSED | LV_STATE_EDITED state so these style properties will be shown.

For a moew detaild description read the Style section.

https://docs.lvgl.io/latest/en/html/overview/indev.html

上面官方教程可以看看,好像是要注册一个group的链表,之后把所有obj链接进去,之后才有按键功能,挺麻烦的,我觉得
回复 支持 反对

使用道具 举报

0

主题

3

帖子

0

精华

新手上路

积分
29
金钱
29
注册时间
2020-4-8
在线时间
7 小时
发表于 2020-6-30 14:38:26 | 显示全部楼层
An input device usually means:
• Pointer-like input device like touchpad or mouse
• Keypads like a normal keyboard or simple numeric keypad
• Encoders with left/right turn and push options
• External hardware buttons which are assigned to specifc points on the screen
回复 支持 反对

使用道具 举报

0

主题

3

帖子

0

精华

新手上路

积分
29
金钱
29
注册时间
2020-4-8
在线时间
7 小时
发表于 2020-6-30 14:39:17 | 显示全部楼层
https://docs.lvgl.io/latest/en/html/overview/indev.html
看这个,好像要加什么group
回复 支持 反对

使用道具 举报

2

主题

4

帖子

0

精华

新手入门

积分
15
金钱
15
注册时间
2017-9-27
在线时间
4 小时
发表于 2020-7-6 09:04:29 | 显示全部楼层
大佬 你解决了吗
回复 支持 反对

使用道具 举报

12

主题

22

帖子

0

精华

初级会员

Rank: 2

积分
137
金钱
137
注册时间
2019-6-17
在线时间
48 小时
 楼主| 发表于 2020-7-6 18:50:00 | 显示全部楼层

没有,,英文的有点难受,,
回复 支持 反对

使用道具 举报

12

主题

22

帖子

0

精华

初级会员

Rank: 2

积分
137
金钱
137
注册时间
2019-6-17
在线时间
48 小时
 楼主| 发表于 2020-7-6 18:51:59 | 显示全部楼层
2256560220xxz 发表于 2020-7-6 18:50
没有,,英文的有点难受,,

感觉不把按键纳入littleVGL也挺好用的。
回复 支持 反对

使用道具 举报

12

主题

22

帖子

0

精华

初级会员

Rank: 2

积分
137
金钱
137
注册时间
2019-6-17
在线时间
48 小时
 楼主| 发表于 2020-7-6 18:52:54 | 显示全部楼层

感觉不把按键纳入littleVGL也挺好用的。
回复 支持 反对

使用道具 举报

0

主题

11

帖子

0

精华

初级会员

Rank: 2

积分
67
金钱
67
注册时间
2013-6-11
在线时间
5 小时
发表于 2020-7-16 14:47:53 | 显示全部楼层
我也再弄,应该简单
回复 支持 反对

使用道具 举报

0

主题

4

帖子

0

精华

新手上路

积分
42
金钱
42
注册时间
2019-11-21
在线时间
8 小时
发表于 2020-8-6 23:44:06 | 显示全部楼层
朋友,解决了么?
回复 支持 反对

使用道具 举报

0

主题

4

帖子

0

精华

新手上路

积分
42
金钱
42
注册时间
2019-11-21
在线时间
8 小时
发表于 2020-8-6 23:45:02 | 显示全部楼层
朋友,解决了么?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-22 16:36

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表