重点参考:
https://www.kernel.org/doc/Documentation/input/event-codes.txt
http://blog.sina.com.cn/s/blog_4ad7c2540101cxa7.html
http://staratsky.iteye.com/blog/1734631
转自: http://blog.csdn.net/lanmanck/article/details/8423669
相信各位使用嵌入式的都希望直接读取键值,特别是芯片厂家已经提供input驱动的情况下,例如GPIO或者扫描类型的键盘。那么在应用层如何通过C语言获取键值呢?
给兄弟们一个重量级的源码,看下面,大家拿去编译运行就知道怎么回事了,当然,可以使用select而不是while()来读取更好一点,留给各位去想象了:
注意:
#include<linux/input.h>
为内核源码的头文件,注意路径,一般为kernel/include/linux/input.h
ev.c:
- /*
- * Copyright 2002 Red Hat Inc., Durham, North Carolina.
- *
- * All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation on the rights to use, copy, modify, merge,
- * publish, distribute, sublicense, and/or sell copies of the Software,
- * and to permit persons to whom the Software is furnished to do so,
- * subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- *
- * This is a simple test program that reads from /dev/input/event*,
- * decoding events into a human readable form.
- */
- /*
- * Authors:
- * Rickard E. (Rik) Faith <faith@redhat.com>
- *
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include <string.h>
- #include <sys/types.h>
- #include <fcntl.h>
- #include <errno.h>
- #include <time.h>
- #include <linux/input.h>
- struct input_event event;
- int main(int argc, char **argv)
- {
- char name[64]; /* RATS: Use ok, but could be better */
- char buf[256] = { 0, }; /* RATS: Use ok */
- unsigned char mask[EV_MAX/8 + 1]; /* RATS: Use ok */
- int version;
- int fd = 0;
- int rc;
- int i, j;
- char *tmp;
- #define test_bit(bit) (mask[(bit)/8] & (1 << ((bit)%8)))
- for (i = 0; i < 32; i++) {
- sprintf(name, "/dev/input/event%d", i);
- if ((fd = open(name, O_RDONLY, 0)) >= 0) {
- ioctl(fd, EVIOCGVERSION, &version);
- ioctl(fd, EVIOCGNAME(sizeof(buf)), buf);
- ioctl(fd, EVIOCGBIT(0, sizeof(mask)), mask);
- printf("%s\n", name);
- printf(" evdev version: %d.%d.%d\n",
- version >> 16, (version >> 8) & 0xff, version & 0xff);
- printf(" name: %s\n", buf);
- printf(" features:");
- for (j = 0; j < EV_MAX; j++) {
- if (test_bit(j)) {
- const char *type = "unknown";
- switch(j) {
- case EV_KEY: type = "keys/buttons"; break;
- case EV_REL: type = "relative"; break;
- case EV_ABS: type = "absolute"; break;
- case EV_MSC: type = "reserved"; break;
- case EV_LED: type = "leds"; break;
- case EV_SND: type = "sound"; break;
- case EV_REP: type = "repeat"; break;
- case EV_FF: type = "feedback"; break;
- }
- printf(" %s", type);
- }
- }
- printf("\n");
- close(fd);
- }
- }
- if (argc > 1) {
- sprintf(name, "/dev/input/event%d", atoi(argv[1]));
- if ((fd = open(name, O_RDWR, 0)) >= 0) {
- printf("%s: open, fd = %d\n", name, fd);
- for (i = 0; i < LED_MAX; i++) {
- event.time.tv_sec = time(0);
- event.time.tv_usec = 0;
- event.type = EV_LED;
- event.code = i;
- event.value = 0;
- write(fd, &event, sizeof(event));
- }
- while ((rc = read(fd, &event, sizeof(event))) > 0) {
- printf("%-24.24s.%06lu type 0x%04x; code 0x%04x;"
- " value 0x%08x; ",
- ctime(&event.time.tv_sec),
- event.time.tv_usec,
- event.type, event.code, event.value);
- switch (event.type) {
- case EV_KEY:
- if (event.code > BTN_MISC) {
- printf("Button %d %s",
- event.code & 0xff,
- event.value ? "press" : "release");
- } else {
- printf("Key %d (0x%x) %s",
- event.code & 0xff,
- event.code & 0xff,
- event.value ? "press" : "release");
- }
- break;
- case EV_REL:
- switch (event.code) {
- case REL_X: tmp = "X"; break;
- case REL_Y: tmp = "Y"; break;
- case REL_HWHEEL: tmp = "HWHEEL"; break;
- case REL_DIAL: tmp = "DIAL"; break;
- case REL_WHEEL: tmp = "WHEEL"; break;
- case REL_MISC: tmp = "MISC"; break;
- default: tmp = "UNKNOWN"; break;
- }
- printf("Relative %s %d", tmp, event.value);
- break;
- case EV_ABS:
- switch (event.code) {
- case ABS_X: tmp = "X"; break;
- case ABS_Y: tmp = "Y"; break;
- case ABS_Z: tmp = "Z"; break;
- case ABS_RX: tmp = "RX"; break;
- case ABS_RY: tmp = "RY"; break;
- case ABS_RZ: tmp = "RZ"; break;
- case ABS_THROTTLE: tmp = "THROTTLE"; break;
- case ABS_RUDDER: tmp = "RUDDER"; break;
- case ABS_WHEEL: tmp = "WHEEL"; break;
- case ABS_GAS: tmp = "GAS"; break;
- case ABS_BRAKE: tmp = "BRAKE"; break;
- case ABS_HAT0X: tmp = "HAT0X"; break;
- case ABS_HAT0Y: tmp = "HAT0Y"; break;
- case ABS_HAT1X: tmp = "HAT1X"; break;
- case ABS_HAT1Y: tmp = "HAT1Y"; break;
- case ABS_HAT2X: tmp = "HAT2X"; break;
- case ABS_HAT2Y: tmp = "HAT2Y"; break;
- case ABS_HAT3X: tmp = "HAT3X"; break;
- case ABS_HAT3Y: tmp = "HAT3Y"; break;
- case ABS_PRESSURE: tmp = "PRESSURE"; break;
- case ABS_DISTANCE: tmp = "DISTANCE"; break;
- case ABS_TILT_X: tmp = "TILT_X"; break;
- case ABS_TILT_Y: tmp = "TILT_Y"; break;
- case ABS_MISC: tmp = "MISC"; break;
- default: tmp = "UNKNOWN"; break;
- }
- printf("Absolute %s %d", tmp, event.value);
- break;
- case EV_MSC: printf("Misc"); break;
- case EV_LED: printf("Led"); break;
- case EV_SND: printf("Snd"); break;
- case EV_REP: printf("Rep"); break;
- case EV_FF: printf("FF"); break;
- break;
- }
- printf("\n");
- }
- printf("rc = %d, (%s)\n", rc, strerror(errno));
- close(fd);
- }
- }
- return 0;
- }
相关推荐
总的来说,Linux输入子系统提供了一种高效、灵活的方式来管理各种输入设备,使得应用程序可以透明地处理来自不同类型的输入源的事件。通过对这个子系统的理解,开发者可以更好地设计和调试涉及输入设备的驱动程序和...
- 最终,这些事件会被传递给上层的应用程序,应用程序可以通过读取 `/dev/input/eventX` 文件来获取这些事件。 #### 五、总结 通过以上分析,我们可以看出Linux的Event层机制是一个非常灵活且强大的设计,它不仅...
linux按键测试例子,/dev/input下event设备,获取按键状态并打印出来。
总之,Linux input子系统是连接硬件输入设备与用户空间应用程序的桥梁,它通过标准化的接口和事件模型简化了驱动开发,同时也提供了丰富的功能以满足各种输入设备的需求。了解和掌握input子系统的工作原理,对于理解...
应用程序可以通过读取 `/dev/input/eventX` 文件来获取这些事件。 #### 设备文件与驱动对应表 通过在设备文件目录下运行 `getevent` 命令,我们可以查看当前系统中各个设备的映射情况: - `/dev/input/event3` ...
应用程序可以通过读取特定的文件描述符来获取这些事件。例如,通过读取`/dev/input/eventX`来获取事件。 #### 三、Input 子系统的关键结构体 Input 子系统中定义了几个关键的数据结构: 1. **`struct input_dev`*...
2. 应用程序通过打开设备文件(如`/dev/input/event0`)并与`evdev`交互,读取事件。 3. 当触摸屏接收到输入(如触摸)时,驱动程序通过子系统核心将事件(如X和Y坐标)传递给`evdev`。 4. `evdev`唤醒等待的进程,...
对于按键,驱动程序会监听硬件事件,如按键按下和释放,并将这些事件转化为内核可以理解的形式,进一步传递给用户空间的应用程序。 在提供的文件中,"button.c"很可能包含了按键驱动的主要实现。这个源代码文件通常...
在Linux操作系统中,输入设备驱动是连接硬件输入设备与用户空间应用程序的重要桥梁。"Linux input设备驱动"主要涉及如何管理并处理来自各种输入设备(如键盘、鼠标、触摸屏等)的事件。以下是对该主题的详细解释: ...
Input Core将这些事件打包成用户空间可以理解的格式,并通过Event Handler传递给用户空间的应用程序。 1. 输入子系统核心层(Input Core):这是input子系统的核心,负责管理和调度输入设备,以及处理设备上报的...
其中input_dev代表一个输入设备,handler负责处理输入设备产生的事件,client代表使用这些事件的应用程序。在设备初始化时,input_dev会与对应的handler绑定,并且可以挂载多个handler,但每个handler最多只能与32个...
在Linux环境下,使用QT进行GUI应用程序开发时,往往需要对用户的键盘输入做出响应。本文将详细介绍如何在QT应用程序中捕获并处理键盘键值,实现简单的键盘事件监听功能。 #### 二、关键技术点 1. **QT键盘事件**:...
具体的应用程序会通过无限循环读取和处理input_event数据,根据事件类型和代码解析并打印相应信息。 在开发板上,按键和触摸屏的编程和测试可以通过监控输入事件进行,实现对设备的交互控制和数据获取。
应用程序可以通过打开、读取和关闭这些设备文件来获取输入事件,例如evtest工具就是示例。 2. 设备事件:input子系统定义了多种事件类型,包括键值事件(如按键按下、释放)、相对坐标事件(如鼠标移动)和绝对坐标...
本文将深入探讨“串口通讯-按键识别-ping程序-我的Linux应用程序”这一主题,揭示其中涉及的关键知识点。 首先,串口通讯(Serial Communication)是指通过串行接口进行的数据传输。在Linux系统中,串口通常被称为/...
本示例主要关注如何在Linux环境下配置和使用游戏手柄,特别是对于开发者来说,理解这个过程对创建支持游戏手柄的应用程序至关重要。 首先,Linux系统识别游戏手柄通常依赖于通用输入子系统(Uinput)。Uinput允许...
5. **用户空间交互**:应用程序可以通过打开和读取这些设备文件来获取输入事件。例如,X Window System和Wayland窗口服务器会监听这些事件以更新屏幕上的光标位置。 6. **设备控制**:除了接收输入,HID驱动也支持...
3. **Event Handler层**:这一层负责接收Input 核心层转发的事件,将其放入缓冲区中,等待应用程序通过打开的节点读取。Event Handler层通过`open`、`read`和`write`等操作与用户空间通信,完成输入事件的最终传递。...
事件处理层为用户空间应用程序提供统一的设备访问接口。这个设计使得驱动层只需关注硬件操作,而事件处理则由事件处理层负责。 2. **事件流程**:当一个输入事件(如键盘按下)发生时,它通过驱动层 -> 核心层 -> ...
在Linux下面使用的程序,可以用来测试event设备,这些设备通常位于/dev/input/下。它支持很多的设备类型,对于调试非常有帮助。本例程适用于嵌入式linux系统下gpiokey即gpio自定义键盘的测试代码