作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有什么方法可以从 Wacom 平板电脑读取数据而不在 Linux 上引发鼠标事件?
我现在使用的是 Ubuntu 12.04 LTS 和 Wacom Intuos 5。在 Ubuntu 上使用平板电脑没问题,我通过 Ggtkmm3.0 使用平板电脑。但我想只获取平板电脑的轴数据而不绑定(bind)到窗口。 Gtkmm 的窗口可以获取平板事件,但我认为它不是周期性的,因为它是事件驱动的。
最佳答案
使用 Linux 输入子系统将可以完成您的任务。
代码在这里,这是打印出坐标(X,Y)和压力。 (例如,文件名是 lis_read.c)
#include <stdio.h>
#include <stdlib.h>
#include <linux/input.h>
#include <unistd.h>
int main (int argc, char *argv[]) {
struct input_event event;
for (;;) {
if (read(0, &event, sizeof(event)) != sizeof(event)) {
exit(EXIT_FAILURE);
}
switch(event.type) {
case EV_ABS:
switch (event.code) {
case ABS_X:
printf("ABS_X: %d\n", event.value);
break;
case ABS_Y:
printf("ABS_Y: %d\n", event.value);
break;
case ABS_PRESSURE:
printf("ABS_PRESSURE: %d\n", event.value);
break;
default:
break;
}
break;
}
}
return EXIT_SUCCESS;
}
% gcc -o lis_read lis_read.c
% ./lis_read < /dev/input/event7
关于ubuntu - 从 Wacom 数位板仅读取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24061780/
我是一名优秀的程序员,十分优秀!