Android:仅用于传入数据的蓝牙侦听器线程

时间:2013-09-08 13:13:03

标签: android bluetooth digital

我正在开发一个Android应用程序,其中我只需要监听传入设备的日志,他们使用蓝牙发送的数据,设备发送数据基本上是一个数字蓝牙温度计,只发送数据。问题是我不知道从哪里开始,因为我是Android编程的新手。只需一步一步的程序就足以引导我走上正轨。我试过蓝牙聊天的例子,但我没有带我去任何我也无法理解的地方。

此致 拉菲克艾哈迈德

1 个答案:

答案 0 :(得分:1)

您需要的第一件事就是知道如何与温度计建立联系。我想,由于设备与智能手机配对,您只需要将连接作为服务器进行管理(在Android手机上)。在这里你总结一下:

  1. 更改蓝牙权限: http://developer.android.com/guide/topics/connectivity/bluetooth.html#Permissions
  2. 启用并设置蓝牙:http://developer.android.com/guide/topics/connectivity/bluetooth.html#SettingUp
  3. 找到设备:http://developer.android.com/guide/topics/connectivity/bluetooth.html#FindingDevices
  4. 与之联系:http://developer.android.com/guide/topics/connectivity/bluetooth.html#ConnectingAsAServer
  5. 管理连接: http://developer.android.com/guide/topics/connectivity/bluetooth.html#ManagingAConnection
  6. 最后,我建议您在运行应用程序之前,在手机的调整菜单中配对设备。从那以后,按照前面的步骤,一切都会好的。如果您有疑问请问我,我在使用arduino和HC-06蓝牙设备进行蓝牙连接方面遇到了同样的麻烦

    希望有所帮助