Пример #1
0
 public void makeFirstAdminConnection(String permissionKey, String defaultKey, Master master) {
   mBluetoothClient = BluetoothClient.getInstance(mContext, this);
   if (!mBluetoothClient.isSupported()) {
     mBluetoothListener.bluetoothNotSupported();
     return;
   } else if (!mBluetoothClient.isEnabled()) {
     mBluetoothListener.enableBluetooth();
     return;
   }
   mBluetoothClient.executeFirstConnectionConfiguration(defaultKey, permissionKey, master);
 }