Arduino制作USB Xbox360游戏手柄Xinput支持库 用于Arduino AVR构建状态的XInput USB Core 此存储库中的文件允许您使用支持USB的Arduino微控制器模拟Xbox游戏手柄(XInput)。最初源自Arduino官方AVR核心。 支持的电路板 •Adafruit Circuit Playground 32u4 •Arduino Esplora •Arduino Industrial 101 •Arduino Leonardo •Arduino Leonardo ETH •Arduino Micro •Arduino Robot Control / Motor •Arduino Yún •Arduino Yún Mini •LilyPad Arduino USB •Linino One 没有原生USB支持的Uno,Nano或Mega等主板不起作用。 No Commercial Use These board definitions make use of Microsoft's VID and PID in order to latch on to the PC driver. As such this is strictly for educational or development use by non-commercial entities. License The Arduino core files are licensed under the terms of the GNU Lesser General Public License (LGPL) version 2.1. Modifications are released under these same terms. See the LICENSE file for more information. Newly contributed files for XInput support are licensed under the terms of the more permissive MIT license.
2021-08-23 18:23:07 455KB arduin xbox usb Xinput
1
Xinput--手柄控制器,支持仿xbox360手柄,支持完美,本人亲测。把文件解压直接放在游戏程序文件夹里即可运行。没有异响~~~~
2021-08-18 17:08:48 141KB xbox360手柄控制器
1
Arduino XInput库 该库使您可以使用具有USB功能的Arduino微控制器轻松地模拟Xbox 360控制器。 入门 void setup () { XInput. begin (); } void loop () { XInput. press (BUTTON_A); delay ( 1000 ); XInput. release (BUTTON_A); delay ( 1000 ); } 在库开始工作之前,您必须安装一个包含XInput USB描述符的兼容主板文件,否则微控制器的行为将不像XInput设备。 这不是可选的。 有关更多信息,请参见下面的部分。 安装兼容的板卡软件包后,必须。 安装XInput库后,打开Arduino IDE并加载位于File -> Examples -> XInput的示例草图(我建议您首先尝试使用“眨眼”草图)。 仔细检查您是否在“工具”菜单中选择了正确的XInput板和/或XInput USB类型,然后将草图上传到微控制器。 在Windows上,您可以通过打开操纵杆控制面板( )或使用来测试草图是否正常工作。 如果
2021-02-02 12:07:55 31KB arduino library usb arduino-ide
1
玩大型单机游戏,不可缺少的文件。。。。。。。。继续的朋友赶紧下载吧
2020-01-11 03:16:04 67KB xinput
1
正常使用该程序手柄设定(仅在罗技手柄F710做过测试):DX键拨到X,MODE灯灭掉,VIBRATION打开(按下时震动时间较长即为打开),该程序只能对一个手柄进行操作,但修改后可对最多4个手柄进行操作. 1.按下Initialize Joystick按键,测试是否能够读取到手柄数据来测试是否有手柄连接,若有手柄连接,则开启读取手柄数据线程,并且enable震动手柄按键. 2.在读取手柄数据线程中,读取tigger以及thumbstick控制量数据并输出到对应控件中,若某一按键被按下,对应的button也会enable. 3.当按下vibrate button,手柄会高速震动,直到关闭程序或者stop vibration. 4.当关闭程序时,读取手柄控制bool型变量为false,使得读取手柄数据线程终止,等待读取手柄数据线程终止后程序退出.
2019-12-21 20:25:24 90KB XInput Joystick 手柄 编程
1