【发布时间】:2017-05-03 07:02:49
【问题描述】:
BLE 设备(脉搏计)的特性值始终相同。信号转到 onCharacteristicChanged 但值没有改变,尝试以不同的方式获取值。
@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
super.onServicesDiscovered(gatt, status);
BluetoothGattCharacteristic characteristic3 = gatt.getService(UUID.fromString("0000180f-0000-1000-8000-00805f9b34fb"))
.getCharacteristic(UUID.fromString("00002a19-0000-1000-8000-00805f9b34fb"));
gatt.setCharacteristicNotification(characteristic3, true);
gatt.readCharacteristic(characteristic3);
}
@Override
public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
super.onCharacteristicRead(gatt, characteristic, status);
UUID uuid = UUID.fromString("00002902-0000-1000-8000-00805f9b34fb");
BluetoothGattDescriptor descriptor = characteristic.getDescriptor(uuid);
descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
gatt.writeDescriptor(descriptor);
}
@Override
public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
super.onCharacteristicChanged(gatt, characteristic);
Log.e(TAG, "pulse: " + characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT8, 0));
}
【问题讨论】:
标签: java android bluetooth bluetooth-lowenergy gatt