NotePublic/Software/Applications/Input/Linux_下_Input_工具.md

25 lines
513 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Linux 下 Input 工具
```bash
# 捕获事件
getevent <device>
# 发送事件
sendevent <device> <type> <code> <value>
```
其中 device 是如 /dev/input/event0 这样的设备文件节点。
getevent 其他参数如下:
| Argument | Description |
|----------|---------------|
| -t | 打印事件的时间戳 |
当由 input 事件到来时将以:
```bash
<type> <code> <value>
```
的格式显示出来type、code 的定义可在 linux/input.h 和 input-event-codes.h 文件中找到。