How to find the UUID of serial port Bluetooth device?
问题 I want to receive data from the serial port bluetooth device to android phone. But i don't know the UUID of that device how to find the UUID of that device? 回答1: Extending what pwc said about the UUID being 0x1101, this is the 16 bit version of the UUID as far as I can tell. I could not work out how to instantiate an UUID with a 16 bit UUID. But as this post says you can do it by: private static final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805f9b34fb"); This worked for me