Bluetooth Connection to Fora D15B from Android

241 Views Asked by At

I am working on android app which connects to FORA D15b (2-in-1 Blood pressure/glucose monitor).

I have tried many combination for this purpose but till now none has worked.

Here is what i tried.

BluetoothDevice device = btAdapter.getRemoteDevice(BhMacID);
String deviceName = device.getName();
Log.v("BP", "Device : " + deviceName);
try {
  Method m = device.getClass().getMethod("createRfcommSocket", new Class[] { int.class });
  socket = (BluetoothSocket) m.invoke(device, Integer.valueOf(1));
  // socket = device.createInsecureRfcommSocketToServiceRecord(UUID.fromString(HS_UUID));
  // socket = device.createRfcommSocketToServiceRecord(UUID.fromString(HS_UUID));
 socket.connect();
 Log.v("BP", "Connected");
} catch (Exception e) {
   e.printStackTrace();
}

I have created socket using three different ways both none works given below exception

java.io.IOException: Connection refused at android.bluetooth.BluetoothSocket.connectNative(Native Method)

I have also tried an android app from google play app myFitnessCompanion https://play.google.com/store/apps/details?id=com.myfitnesscompanion
which works fine on my phone.

Please help, will be great if someone can help how does exactly the myFitnessCompanion connects to FORA D15b.

-Pramod

0

There are 0 best solutions below