Android BLE BluetoothGattService为null

时间:2016-04-27 14:41:21

标签: android bluetooth bluetooth-lowenergy

我使用Android应用程序连接BLE设备  代码

   mBluetoothGatt = device.connectGatt(this, false, mGattCallback);

   BluetoothGattService bluetoothservice=mBluetoothGatt.getService(UUID.fromString("0003cdd0-0000-1000-8000-00805f9b0131"));

结果是错误: java.lang.NullPointerException:尝试在空对象引用上调用虚拟方法'android.bluetooth.BluetoothGattCharacteristic android.bluetooth.BluetoothGattService.getCharacteristic(java.util.UUID)'

因为我想通过bluetoothgatt获得服务而不是回调(如果从mGattCallback获得服务还可以)

感谢

0 个答案:

没有答案