在Android Studio通知中读取Gatt特征值

时间:2020-04-02 13:02:36

标签: android c android-studio bluetooth-lowenergy gatt

我想通过通知的方式读取GATT特征值。

这意味着我需要设置该特征以进行通知,然后读取数据。

我希望通过onclick在函数中执行此操作。

我进行活动时,将找到特征并将其添加到此数组列表中

private ArrayList<ArrayList<BluetoothGattCharacteristic>> mGattCharacteristics =
            new ArrayList<ArrayList<BluetoothGattCharacteristic>>();

我具有服务的UUID和特征值,如何从中获得特征?

我想要的东西如下:


BluetoothGattCharacteristic mycharacterisic;
 mycharacterisic = mGattCharacteristics.get(1).get(1);
mBluetoothLeService.setCharacteristicNotification(mycharacterisic, true);
//output to a text box via notification

get(1).get(1)只是我输入的随机参数。如何通过UUID执行操作?

谢谢

0 个答案:

没有答案