服务发现失败 - 使用 SPP 的蓝牙聊天连接

发布于 2024-11-24 22:45:56 字数 487 浏览 1 评论 0原文

所以我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蛮可爱 2024-12-01 22:45:56

根据我的经验,为了能够连接到蓝牙设备的 SPP 配置文件,对蓝牙聊天应用程序进行的唯一绝对必要的修改是使用 SPP UUID。更改 MY_UUID 如下:

private static final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); 

通过这个 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:

private static final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); 

With this UUID I find I am able to connect to a large range of SPP Bluetooth modules.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文