服务发现失败 - 使用 SPP 的蓝牙聊天连接
所以我在eclipse(API8)上编译并成功运行了Android蓝牙聊天项目。
问题是,当我连接到自己的嵌入式蓝牙设备时 (http://www.sparkfun.com/ products/582)它在调试模式下显示“服务发现失败”。
我搜索了一下,发现这篇文章: Service discovery failed exception using Bluetooth on Android
我如何每次都会遇到编译错误。
我在 eclipse 中有几个快速修复。没有一个有效。我是java新手。
谢谢
So I have compiled and succesfully ran the Android Bluetooth Chat project on eclipse (API8).
The issue is, when I connect to my own embedded Bluetooth Device (http://www.sparkfun.com/products/582) It says "Service Discovery Fail" in debug mode.
I searched, and found this post: Service discovery failed exception using Bluetooth on Android
How every I get a compilation error.
I have several quick fixes in eclipse. None of which work. I am new to java.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我的经验,为了能够连接到蓝牙设备的 SPP 配置文件,对蓝牙聊天应用程序进行的唯一绝对必要的修改是使用 SPP UUID。更改 MY_UUID 如下:
通过这个 UUID,我发现我能够连接到大范围的 SPP 蓝牙模块。
In my experience, the only absolutely essential modification to make to the Bluetooth Chat application to enable connection to the SPP profile of a Bluetooth device is to use the SPP UUID. Change MY_UUID as follows:
With this UUID I find I am able to connect to a large range of SPP Bluetooth modules.