在linux 中,我想用QT c++ 写一个取的触摸屏的数据,它的设备为/dev/input/event1,写一个例子
时间: 2024-01-14 17:04:27 浏览: 105
好的,以下是一个简单的示例程序,可以获取触摸屏的数据:
```cpp
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <linux/input.h>
int main()
{
int fd;
struct input_event ev;
fd = open("/dev/input/event1", O_RDONLY);
if (fd < 0) {
perror("open");
exit(1);
}
while (1) {
read(fd, &ev, sizeof(struct input_event));
if (ev.type == EV_ABS && ev.code == ABS_X) {
printf("X: %d\n", ev.value);
}
if (ev.type == EV_ABS && ev.code == ABS_Y) {
printf("Y: %d\n", ev.value);
}
if (ev.type == EV_KEY && ev.code == BTN_TOUCH) {
printf("Touch: %d\n", ev.value);
}
}
close(fd);
return 0;
}
```
这个程序会不断地读取触摸屏设备的输入事件,并输出触摸屏的 X、Y 坐标以及触摸状态。注意,需要使用 root 权限运行该程序。
阅读全文