使用python模拟USB键盘

时间:2016-03-17 21:56:59

标签: python usb pyserial hid pyusb

我很清楚可以与Python结合使用的不同自动化库(或者甚至作为一个单独的程序/实体一起使用) - 这不是我需要的......

以下是我想要完成的事情......

{COMP1}  -------->  {COMP2}

(1) --> = COMP1 USB port[01] is connected to COMP2 USB port[01]
    (it could be any port, I'm just using [01] as an example)
(2) COMP1 USB port[01] "looks-like" a Generic USB keyboard
    (I'll maybe need to spoof HID values so COMP2 treats it as a keyboard)
(3) My program would send keystroke signals into COMP2 in such a way that
    COMP2 would treat the input as any other connected keyboard device

我看起来有点pyusb,但我认为它看起来像是在控制连接的设备,它不会模拟/模拟设备。如果我有错,请指出正确的文档,以便我了解如何通过USB端口发出信号,就好像我是键盘一样

我认为article开始真正划伤表面,但我不知道下一步该怎么做。

也许PySerial可能是另一种方法,但我没有找到任何可靠的例子,其中python发出键盘给USB(它似乎是在侦听)

非常感谢任何帮助或想法!

1 个答案:

答案 0 :(得分:1)

我最终使用Teensy 3.2设备而不是使用python编码 您可以在这里研究/购买https://www.pjrc.com/teensy/

基本上,这个arduino-cousin 硬件可以伪装/模仿任何USB设备(发送一定的HID号码)......一旦连接到另一台计算机(和一点点编码),你就可以以编程方式向目标计算机发送一系列击键/命令 - 这很容易(第一次确实感觉有点疯狂的科学家),但它真的很有趣。

我会在github上发布代码示例,如果有人好奇或将来对此帖子做出回应。