目录
兼容性:企业微信
读取低功耗蓝牙设备的特征值的二进制数据值。
ww.readBLECharacteristicValue({
deviceId: deviceId,
serviceId: serviceId,
characteristicId: characteristicId
})
属性 | 类型 | 默认值 | 必填 | 说明 | 最低版本 | |
---|---|---|---|---|---|---|
deviceId | string | 是 | 蓝牙设备 ID 需要已经通过 createBLEConnection 与对应设备建立链接 | |||
serviceId | string | 是 | 蓝牙特征值对应服务的 uuid 需要通过 getBLEDeviceServices 接口获取 | |||
characteristicId | string | 是 | 蓝牙特征值的 uuid 需要通过 getBLEDeviceCharacteristics 接口获取 | |||
success | Function | 否 | 成功回调 | |||
fail | Function | 否 | 失败回调 | |||
cancel | Function | 否 | 取消回调 | |||
complete | Function | 否 | 完成回调 |
Promise<Object>
属性 | 类型 | 默认值 | 必填 | 说明 | 最低版本 | |
---|---|---|---|---|---|---|
errMsg | string | 是 | 通用错误信息 | |||
errCode | number | 是 | 通用错误码 |
设备的特征值必须支持 read 才可以成功调用,具体参照 characteristic 的 properties 属性
并行调用多次读写接口存在读写失败的可能性
接口读取到的信息需要在 onBLECharacteristicValueChange 的回调中获取