目前的情况:写入成功,但是打印机未有任何响应。简化后的步骤:
- 搜索设备。
- 连接。
- 获取services。
- 遍历所有services下的characteristic,找到第一个write为true的characteristic。
- 写入特征值。
遇到的问题:在第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);
}
}
descriptors不是必填项,可以将其直接设置为空数组。