Android 和 Lego Mindstorm NXT 之间的蓝牙连接
有谁知道如何在 Android 和 LEGO-Mindstorm-NXT 之间建立蓝牙连接? 两个 NXT 之间的连接工作正常。但其他 Connection-type 就不太容易了。 我正在使用 LeJOS 固件 0.85 和 Android SDK 工具 (2.2 Froyo)。
Does anybody know, how to build a bluetooth connection between Android and LEGO-Mindstorm-NXT?
The connection between two NXTs works fine. But the other Connection-type likes not so easy.
I am working with the LeJOS Firmware 0.85 and the Android SDK Tools (2.2 Froyo).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以我已经解决了这个问题,并将展示它是如何工作的,因为我看到很多人都遇到了问题。
该类包括 4 个功能:
以下是 Android 设备的代码 (BT_comm.java):
要从 Android 智能手机获取消息,您必须在 NXT 端进行读取调用。
这是来自 NXT 端的代码,它将接受来自智能手机的连接并从中读取消息:
希望这会帮助其他人......
So i've solved it and will show all how does it works, because i've seen that a lot of people have problems with that.
The class includes 4 functions:
Here is the code for the android device (BT_comm.java):
To get messages from the Android Smartphone you must have a read call on the NXT-side.
Here is the code from the NXT-side wich will accept the connection from the Smartphone and read messages from it:
Hope this will help others...
有一个文档我觉得非常有用
http://wiki.tinyclr.com/images/d/df/LEGO_MINDSTORMS_NXT_Direct_commands.pdf
github 上的 MINDdroid 包是一个很好的起点。
There is a document I found very useful
http://wiki.tinyclr.com/images/d/df/LEGO_MINDSTORMS_NXT_Direct_commands.pdf
The MINDdroid package on github is a fine place to start.