我正在编写一个Android应用程序,用于连接蓝牙低功耗计步器带和Android手机,并从中读取数据。我的应用程序到目前为止成功扫描计步器并将其列出地址。 **
BAND
FB:02:52:EE:1C:E1
**
但我没有计步器的UUID。我如何获得计步器的UUID。如果我输入样本UUID 00001101-0000-1000-8000-00805f9b34fb
`BluetoothGattService mGattService = mBluetoothGatt.getService(UUID);`
我将mGattService视为null。
我有什么方法可以获得计步器的UUID
答案 0 :(得分:0)
尝试一下;
TelephonyManager tManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
String uuid = tManager.getDeviceId();
愿它能帮到你。 谢谢!