wx.writeBLECharacteristicValue,向低功耗藍(lán)牙設(shè)備特征值中寫入二進(jìn)制數(shù)據(jù)
2017-12-11
導(dǎo)讀:基礎(chǔ)庫 1.1.0 開始支持,低版本需做 兼容處理 向低功耗藍(lán)牙設(shè)備特征值中寫入二進(jìn)制數(shù)據(jù)。注意:必須設(shè)備的特征值支持 write 才可以成功調(diào)用,具體參照 characteristic 的 properties 屬性...
基礎(chǔ)庫 1.1.0 開始支持,低版本需做兼容處理
向低功耗藍(lán)牙設(shè)備特征值中寫入二進(jìn)制數(shù)據(jù)。注意:必須設(shè)備的特征值支持write
才可以成功調(diào)用,具體參照 characteristic 的 properties 屬性
tips: 并行調(diào)用多次讀寫接口存在讀寫失敗的可能性
OBJECT參數(shù)說明:
參數(shù) | 類型 | 必填 | 說明 |
---|---|---|---|
deviceId | String | 是 | 藍(lán)牙設(shè)備 id,參考 device 對(duì)象 |
serviceId | String | 是 | 藍(lán)牙特征值對(duì)應(yīng)服務(wù)的 uuid |
characteristicId | String | 是 | 藍(lán)牙特征值的 uuid |
value | ArrayBuffer | 是 | 藍(lán)牙設(shè)備特征值對(duì)應(yīng)的二進(jìn)制值 |
success | Function | 是 | 成功則返回本機(jī)藍(lán)牙適配器狀態(tài) |
fail | Function | 否 | 接口調(diào)用失敗的回調(diào)函數(shù) |
complete | Function | 否 | 接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會(huì)執(zhí)行) |
success返回參數(shù):
參數(shù) | 類型 | 說明 |
---|---|---|
errMsg | String | 成功:ok,錯(cuò)誤:詳細(xì)信息 |
示例代碼:
// 向藍(lán)牙設(shè)備發(fā)送一個(gè)0x00的16進(jìn)制數(shù)據(jù)
let buffer = new ArrayBuffer(1)
let dataView = new DataView(buffer)
dataView.setUint8(0, 0)
wx.writeBLECharacteristicValue({
// 這里的 deviceId 需要在上面的 getBluetoothDevices 或 onBluetoothDeviceFound 接口中獲取
deviceId: deviceId,
// 這里的 serviceId 需要在上面的 getBLEDeviceServices 接口中獲取
serviceId: serviceId,
// 這里的 characteristicId 需要在上面的 getBLEDeviceCharacteristics 接口中獲取
characteristicId: characteristicId,
// 這里的value是ArrayBuffer類型
value: buffer,
success: function (res) {
console.log('writeBLECharacteristicValue success', res.errMsg)
}
})
第二部分:如何開通一個(gè)小商店