我正试图通过蓝牙在Android平板电脑和带有BlueSmirf蓝牙适配器的Arduino之间进行通信。 在我的Android代码中,我首先检查已经配对的设备列表,找到我正在寻找的设备。如果它不在那里,我开始发现。 这两种可能性都可以使BlueSmirf上的状态LED变为绿色,表示连接成功。 但是,只有在我启动应用程序之前设备未配对,我才能通过蓝牙发送/接收数据。如果设备之前已配对,则可以更可靠,更快地建立连接,但不能发送或接收任何数据。 你知道为什么会这样吗?非常感谢提前!
以下是相关代码:
public void connect() {
// I know I should be using an intent here...
while (!bluetoothAdapter.isEnabled()) {
bluetoothAdapter.enable();
}
pairedDevices = bluetoothAdapter.getBondedDevices();
if (pairedDevices.size() > 0) {
for (BluetoothDevice device : pairedDevices) {
if (device.getName().equals("FireFly-8AAD")) {
mDevice = device;
}
}
}
if (mDevice == null) {
// BroadcastReceiver registered with IntentFilter(BluetoothDevice.ACTION_FOUND)
registerReceiver(mReceiver, find);
if (!bluetoothAdapter.isDiscovering ()) {
bluetoothAdapter.startDiscovery();
}
}
while (mDevice == null) {
// Wait for BroadcastReceiver to find the device and
// connect
}
if (mDevice != null) {
// Create socket connection in a new thread
Connect connection = new Connect();
new Thread(connection).start();
}
while (mSocket == null) {
// Wait for successfull socket connection
}
if (mSocket != null) {
// Get input/ouputstream
Communication communicate = new Communication();
new Thread(communicate).start();
}
}
更新:
我现在也试图替换这部分:
if (pairedDevices.size() > 0) {
for (BluetoothDevice device : pairedDevices) {
if (device.getName().equals("FireFly-8AAD")) {
mDevice = device;
}
}
}
用这个:
if (pairedDevices.size() > 0) {
for (BluetoothDevice device : pairedDevices) {
if (device.getName().equals("FireFly-8AAD")) {
mDevice = bluetoothAdapter.getRemoteDevice(device.getAddress());
}
}
}
如此处所示:Android Bluetooth accept() / connect() with already paired devices
但它仍然不起作用......
更新2:
我替换了
device.getName().equals("FireFly-8AAD")
与
device.getAddress().equals("MAC-Address here")
还是同样的问题。
我也试过在一个新线程中运行整个连接过程,这个过程只反对运行socket.connect()和socket.getInput / OuputStream,但这也无济于事。
更新3:
我认为如果我还提供建立连接的代码,我可以发送/接收数据,这可能会有所帮助:
private class mBroadcastReceiver extends BroadcastReceiver {
private String discoveredDeviceName;
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
discoveredDeviceName = intent.getStringExtra(BluetoothDevice.EXTRA_NAME);
}
if (discoveredDeviceName.equals("FireFly-8AAD")) {
bt_device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
}
}
};
答案 0 :(得分:1)
早期配对bluesmirf,我在connect()之前做“cancelDiscovery()”,如下所示:
BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
BluetoothDevice device = adapter.getRemoteDevice(macAddr);
if (adapter.isDiscovering())
adapter.cancelDiscovery();
Method m = device.getClass().getMethod("createRfcommSocket", new Class[] { int.class });
btSocket = (BluetoothSocket) m.invoke(device, 1);
但有时,蓝牙模块在关闭流和插座后保持连接,并且平板电脑断电后绿色指示灯保持活动状态。这很奇怪,我认为这是一个硬件问题。