Arduino电脑鼠标/输入设备

时间:2012-06-06 04:28:53

标签: c arduino mouse processing usbserial

我已经通过串口USB端口成功地通过Arduino与计算机进行了交谈,我想到了我可以用arduino制作键盘或鼠标。假设我想将计算机的鼠标向左翻译1个像素。为了达到这个目的,我必须通过串行线发送什么消息?

2 个答案:

答案 0 :(得分:2)

谷歌是一件很棒的事情。 "use arduino as mouse"返回170万次点击。 third hit on the list使用新的Leonardo电路板将您带到Arduino Playground以获取示例。

注意: The Leonardo differs from all preceding boards in that the ATmega32u4 has built-in USB communication, eliminating the need for a secondary processor. This allows the Leonardo to appear to a connected computer as a mouse and keyboard, in addition to a virtual (CDC) serial / COM port.

假设你没有那块电路板,那么another site用于其他一些特定的电路板,yet another是一个项目的日志,包括旧电路板的硬件和软件。

希望这有帮助(并且是对问题的更好答案)。

答案 1 :(得分:0)

您必须重新配置USB接口芯片才能显示为USB HID端点。