mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-09 11:47:04 +01:00
Attempt to improve Pebble bonding when bonding fails #33
This commit is contained in:
parent
be52724fdd
commit
095ada8e5d
@ -50,11 +50,22 @@ public class DiscoveryActivity extends Activity implements AdapterView.OnItemCli
|
|||||||
int newState = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.STATE_OFF);
|
int newState = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.STATE_OFF);
|
||||||
bluetoothStateChanged(oldState, newState);
|
bluetoothStateChanged(oldState, newState);
|
||||||
break;
|
break;
|
||||||
case BluetoothDevice.ACTION_FOUND:
|
case BluetoothDevice.ACTION_FOUND: {
|
||||||
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
|
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
|
||||||
short rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI, GBDevice.RSSI_UNKNOWN);
|
short rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI, GBDevice.RSSI_UNKNOWN);
|
||||||
handleDeviceFound(device, rssi);
|
handleDeviceFound(device, rssi);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
case BluetoothDevice.ACTION_BOND_STATE_CHANGED: {
|
||||||
|
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
|
||||||
|
if (device != null && device.getAddress().equals(bondingAddress)) {
|
||||||
|
int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE, BluetoothDevice.BOND_NONE);
|
||||||
|
if (bondState == BluetoothDevice.BOND_BONDED) {
|
||||||
|
Log.i(TAG, "Successfully bonded with: " + bondingAddress);
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -80,6 +91,7 @@ public class DiscoveryActivity extends Activity implements AdapterView.OnItemCli
|
|||||||
private DeviceCandidateAdapter cadidateListAdapter;
|
private DeviceCandidateAdapter cadidateListAdapter;
|
||||||
private Button startButton;
|
private Button startButton;
|
||||||
private Scanning isScanning = Scanning.SCANNING_OFF;
|
private Scanning isScanning = Scanning.SCANNING_OFF;
|
||||||
|
private String bondingAddress;
|
||||||
|
|
||||||
private enum Scanning {
|
private enum Scanning {
|
||||||
SCANNING_BT,
|
SCANNING_BT,
|
||||||
@ -112,6 +124,7 @@ public class DiscoveryActivity extends Activity implements AdapterView.OnItemCli
|
|||||||
|
|
||||||
IntentFilter bluetoothIntents = new IntentFilter();
|
IntentFilter bluetoothIntents = new IntentFilter();
|
||||||
bluetoothIntents.addAction(BluetoothDevice.ACTION_FOUND);
|
bluetoothIntents.addAction(BluetoothDevice.ACTION_FOUND);
|
||||||
|
bluetoothIntents.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);
|
||||||
bluetoothIntents.addAction(BluetoothAdapter.ACTION_DISCOVERY_STARTED);
|
bluetoothIntents.addAction(BluetoothAdapter.ACTION_DISCOVERY_STARTED);
|
||||||
bluetoothIntents.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
|
bluetoothIntents.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
|
||||||
bluetoothIntents.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
|
bluetoothIntents.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
|
||||||
@ -303,8 +316,10 @@ public class DiscoveryActivity extends Activity implements AdapterView.OnItemCli
|
|||||||
else {
|
else {
|
||||||
try {
|
try {
|
||||||
BluetoothDevice btDevice = adapter.getRemoteDevice(deviceCandidate.getMacAddress());
|
BluetoothDevice btDevice = adapter.getRemoteDevice(deviceCandidate.getMacAddress());
|
||||||
btDevice.createBond();
|
if (btDevice.createBond()) {
|
||||||
finish();
|
// async, wait for bonding event to finish this activity
|
||||||
|
bondingAddress = btDevice.getAddress();
|
||||||
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user