Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Now I have some problem of bluetooth connection. I used Android as a server and use a PC to connect the server by using bluez(a bluetooth library).

I just used the following example code (Example 4-3. rfcomm-client.c) as a client, and used this as a server(http://developer.android.com/guide/topics/connectivity/bluetooth.html).

Now the question is, the server can not received any data, but the client return a success code to me(means data sent successfully).

I think it's a problem of UUID, and I checked the following site: https://www.bluetooth.org/Technical/AssignedNumbers/service_discovery.htm

Then I used "00000003-0000-1000-8000-00805F9B34FB" as the UUID (RFCOMM connection), but it's not work.

And I don't know what should I do now, is this a problem of using a wrong UUID or other problem?

Because of my poor English, if you don't understand my words, please ask me. Thanks in advance!

and this is my code of the thread of server:

public void run(){
    BluetoothSocket socket = null;
    while(true){

        try {
            Log.i("server","ready");
            socket = btServerSocket.accept(); //btServerSocket is an object of BluetoothServerSocket
        } catch (IOException e) {
            // TODO Auto-generated catch block
            break;
        } catch (NullPointerException e){
            break;
        }
        Log.i("server","accepted");
    }
    Log.i("server","end");
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.