如何在 C# 应用程序内部连接 WiiMote?
我想使用 WiiMoteLib 将单个 wiiMote 连接到我的应用程序,但我希望在内部完成连接,即。用户只需运行该应用程序(并且不需要将 wiiMote 与 Windows Wizard 或 bluesoleil 连接)。该应用程序采用 C# 语言,无法更改语言。 谢谢!
I want to connect a single wiiMote to my app using WiiMoteLib, but I want the connection done internally ie. the user has only to run the app (and should have no need to connect the wiiMote with windows wizard or bluesoleil). The app is in C# and the language cannot be changed.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
32feet.NET 可以完成这项工作吗?
您可能还需要处理配对,可能使用BluetoothWin32Authentication并处理其回调,请参阅http://32feet.codeplex.com/wikipage?title=Bluetooth%20Security 和 http://32feet.codeplex.com/wikipage?title=BluetoothWin32Authentication
Does 32feet.NET do the job?
You may also need to handle pairing, perhaps using BluetoothWin32Authentication and handling its callback, see http://32feet.codeplex.com/wikipage?title=Bluetooth%20Security and http://32feet.codeplex.com/wikipage?title=BluetoothWin32Authentication
这里有一个如何使用 Microsoft 蓝牙 API 和 HID API 执行此操作的示例:
http://www .richlynch.com/code/wiipair
它运行得很好。
它是 C++ 语言,但很容易转换为 C#。
There is an example of how to do this here using the Microsoft Bluetooth API and the HID API:
http://www.richlynch.com/code/wiipair
It works quire well.
Its in C++, but its pretty easy to convert to C#.