readCharacteristic method
读取 GATT 特征值。
参数:
deviceId:已连接设备标识,无默认值。serviceUuid:服务 UUID,无默认值。characteristicUuid:特征 UUID,无默认值。Linux 使用 BlueZReadValue;Web 要求serviceUuid已在设备选择时授权。
Implementation
Future<List<int>> readCharacteristic({
required String deviceId,
required String serviceUuid,
required String characteristicUuid,
}) {
throw UnimplementedError('readCharacteristic() has not been implemented.');
}