Android蓝牙低功耗 - 如何访问以前配对的设备?

时间:2015-09-21 16:23:24

标签: android bluetooth bluetooth-lowenergy android-bluetooth

我开发的Android应用程序通过Bluetooth Low Energy连接到设备。

我的问题是,我无法找到连接我之前连接的设备的方法。在手机的蓝牙设置中,它将蓝牙设备显示为"配对"所以我想从应用程序连接到“聊天”#39;它。

任何人都知道如何做到这一点?

提前致谢!

1 个答案:

答案 0 :(得分:0)

您可以从BluetoothAdapter获取已绑定设备的列表:

DirectoryIndex index.php
RewriteEngine On

#Rewrite for non www
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

# If requested resource is not a file or directory then redirect to /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . / [L,R=302]

然后识别您感兴趣的设备并连接:

Set<BluetoothDevice> devices = myBluetoothAdapter.getBondedDevices();