IDBlue is a RFID reader that sends what it reads through bluetooth to a host.
This is the homepage for the latest model, i have an older one: IDBLUE - Home
I want to make an android app that gets what IDBlue reads. I'm using the android 2.1 api bluetooth classes and as the device requires SPP conection, the following UUID: "00001101-0000-1000-8000-00805F9B34FB"
I've the following problem: after making:
btSocket = device.createRfcommSocketToServiceRecord(UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"));
i try to:
btSocket.connect();
This point the app crashes and raises the following exception: Service Discovery Failed
Does anyone know why this could be happening ? Thanks
This is the homepage for the latest model, i have an older one: IDBLUE - Home
I want to make an android app that gets what IDBlue reads. I'm using the android 2.1 api bluetooth classes and as the device requires SPP conection, the following UUID: "00001101-0000-1000-8000-00805F9B34FB"
I've the following problem: after making:
btSocket = device.createRfcommSocketToServiceRecord(UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"));
i try to:
btSocket.connect();
This point the app crashes and raises the following exception: Service Discovery Failed
Does anyone know why this could be happening ? Thanks