HarmonyOS 关于向低功耗蓝牙设备写入特定的特征值的问题(打印机数据传输)?

目前的情况:写入成功,但是打印机未有任何响应。简化后的步骤:

  1. 搜索设备。
  2. 连接。
  3. 获取services。
  4. 遍历所有services下的characteristic,找到第一个write为true的characteristic。
  5. 写入特征值。

遇到的问题:在第4步中获取到characteristic,它的descriptors为空数组,而写入特征值的时候需要descriptor对象,尝试了2种方式:使用write:true的特征的数据 + 其他特征的descriptor。使用同一个特征的所有数据(但write = false)。均未报错,但打印机无响应。

以下是提供的写入特征值demo代码,直接取的descriptors[0]。

writeCharacteristicValue() {
  if (!this.gattServiceInfo) {
    this.characteristicValue = '';
    console.log('BluetoothPage bluetooth gattServiceInfo is undefined ');
    return
  }
  let services: ble.GattService = this.gattServiceInfo;

  console.log('ble1,services.characteristics', JSON.stringify(services.characteristics))

  let descriptors: Array<ble.BLEDescriptor> = [];
  let descriptor: ble.BLEDescriptor = {
    serviceUuid: services.serviceUuid,
    characteristicUuid: services.characteristics[0].characteristicUuid,
    descriptorUuid: services.characteristics[0].descriptors[0].descriptorUuid,
    descriptorValue: services.characteristics[0].descriptors[0].descriptorValue
  };
  descriptors[0] = descriptor;

  let characteristic: ble.BLECharacteristic = {
    serviceUuid: services.serviceUuid,
    characteristicUuid: services.characteristics[0].characteristicUuid,
    characteristicValue: Utils.string2ArrayBuffer(this.cValue),
    descriptors: descriptors
  };
  try {
    if (this.gattClient) {
      this.gattClient.writeCharacteristicValue(characteristic, ble.GattWriteType.WRITE);
      promptAction.showToast({
        message: '特征值写结束'
      })
      console.log('BluetoothPage writeCharacteristicValue finish');
    }
  } catch (err) {
    console.error('errCode: ' + (err as BusinessError).code + ', errMessage: ' + (err as BusinessError).message);
  }
}
阅读 525
1 个回答

descriptors不是必填项,可以将其直接设置为空数组。

let characteristic: ble.BLECharacteristic = {
  serviceUuid: services.serviceUuid,
  characteristicUuid: services.characteristics[0].characteristicUuid,
  characteristicValue: Utils.string2ArrayBuffer(this.cValue),
  descriptors: []
};
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
logo
HarmonyOS
子站问答
访问
宣传栏