views:

48

answers:

1

If I wanted to connect to another device via bluetooth how would I do it?

Nothing I've done seems to work. The phone I'm trying to connect to is non android and has bluetooth on and discoverable.

+1  A: 

Bluetooth API is realy poor in this case... let's have look at java-doc:

Hint: If you are connecting to a Bluetooth serial board then try using the well-known SPP UUID 00001101-0000-1000-8000-00805F9B34FB. However if you are connecting to an Android peer then please generate your own unique UUID.

from: link text

According to this, your peer should be visible under '00001101-0000-1000-8000-00805F9B34FB' srvice record.

Damian Kołakowski
Thank you for your response. I did eventually figure it out. I was trying to connect via DUN and it kept failing even though I know my other was was capable. Turns out my W385 diables dun when plugged directly into a computer.
Mitchell