作者:bluelucky2012 | 来源:互联网 | 2023-09-11 21:52
Input
命令例子:
input tab x y //模拟点击
input swipe x1 y1 x2 y2 //模拟滑动屏幕
linux/input.h中有定义,这个文件还定义了标准按键的编码等 struct input_event { struct timeval time; //按键时间 __u16 type; //类型,在下面有定义 __u16 code; //要模拟成什么按键 __s32 value;//是按下还是释放 }; |