该 API 使用方法为 wx.writeBLECharacteristicValue(Object object)
属性 | 类型 | 必填 | 说明 |
deviceId | string | 是 | 蓝牙设备 id |
serviceId | string | 是 | 蓝牙特征对应服务的 UUID |
characteristicId | string | 是 | 蓝牙特征的 UUID |
value | ArrayBuffer | 是 | 蓝牙设备特征对应的二进制值 |
writeType | string | 否 | 蓝牙特征值的写模式设置,有两种模式,iOS 优先 write,Android 优先 writeNoResponse。合法值为: write:强制回复写,不支持时报错 writeNoResponse:强制无回复写,不支持时报错 |
success | function | 否 | 接口调用成功的回调函数 |
fail | function | 否 | 接口调用成功的回调函数 |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
错误码 | 错误信息 | 说明 |
0 | ok | 正常 |
-1 | already connect | 已连接 |
10000 | not init | 未初始化蓝牙适配器 |
10001 | not available | 当前蓝牙适配器不可用 |
10002 | no device | 没有找到指定设备 |
10003 | connection fail | 连接失败 |
10004 | no service | 没有找到指定服务 |
10005 | no characteristic | 没有找到指定特征 |
10006 | no connection | 当前连接已断开 |
10007 | property not support | 当前特征不支持此操作 |
10008 | system error | 其余所有系统上报的异常 |
10009 | system not support | Android 系统特有,系统版本低于4.3不支持 BLE |
10012 | operate time out | 连接超时 |
10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 |
// 向蓝牙设备发送一个0x00的16进制数据let buffer = new ArrayBuffer(1)let dataView = new DataView(buffer)dataView.setUint8(0, 0)wx.writeBLECharacteristicValue({// 这里的 deviceId 需要在 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取deviceId,// 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取serviceId,// 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取characteristicId,// 这里的value是ArrayBuffer类型value: buffer,success (res) {console.log('writeBLECharacteristicValue success', res.errMsg)}})
该 API 使用方法为 wx.readBLECharacteristicValue(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | 蓝牙设备 id |
serviceId | string | - | 是 | 蓝牙特征对应服务的 UUID |
characteristicId | string | - | 是 | 蓝牙特征的 UUID |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
错误码 | 错误信息 | 说明 |
0 | ok | 正常 |
-1 | already connect | 已连接 |
10000 | not init | 未初始化蓝牙适配器 |
10001 | not available | 当前蓝牙适配器不可用 |
10002 | no device | 没有找到指定设备 |
10003 | connection fail | 连接失败 |
10004 | no service | 没有找到指定服务 |
10005 | no characteristic | 没有找到指定特征 |
10006 | no connection | 当前连接已断开 |
10007 | property not support | 当前特征不支持此操作 |
10008 | system error | 其余所有系统上报的异常 |
10009 | system not support | Android 系统特有,系统版本低于 4.3 不支持 BLE |
10012 | operate time out | 连接超时 |
10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 |
// 必须在这里的回调才能获取wx.onBLECharacteristicValueChange(function(characteristic) {console.log('characteristic value comed:', characteristic)})wx.readBLECharacteristicValue({// 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接deviceId,// 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取serviceId,// 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取characteristicId,success (res) {console.log('readBLECharacteristicValue:', res.errCode)}})
该 API 使用方法为 wx.setBLEMTU(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | 蓝牙设备 id |
mtu | number | - | 是 | 最大传输单元。设置范围为 (22,512) 区间内,单位 bytes |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
mtu | number | 最终协商的 MTU 值,与传入参数一致。Android 客户端8.0.9开始支持 |
该 API 使用方法为 wx.getBLEMTU(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | 蓝牙设备 id |
writeType | string | write | 否 | 写模式 (iOS 特有参数),合法值为: write:有回复写 writeNoResponse:无回复写 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用成功的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
mtu | number | 最大传输单元 |
错误码 | 错误信息 | 说明 |
0 | ok | 正常 |
-1 | already connect | 已连接 |
10000 | not init | 未初始化蓝牙适配器 |
10001 | not available | 当前蓝牙适配器不可用 |
10002 | no device | 没有找到指定设备 |
10003 | connection fail | 连接失败 |
10004 | no service | 没有找到指定服务 |
10005 | no characteristic | 没有找到指定特征 |
10006 | no connection | 当前连接已断开 |
10007 | property not support | 当前特征不支持此操作 |
10008 | system error | 其余所有系统上报的异常 |
10009 | system not support | Android 系统特有,系统版本低于4.3不支持 BLE |
10012 | operate time out | 连接超时 |
10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 |
wx.getBLEMTU({deviceId: '',writeType: 'write',success (res) {console.log(res)}})
该 API 使用方法为 wx.onBLEMTUChange(function listener)
属性 | 类型 | 说明 |
deviceId | string | 蓝牙设备 id |
mtu | number | 最大传输单元 |
wx.onBLEMTUChange(function (res) {console.log('bluetooth mtu is', res.mtu)})
该 API 使用方法为 wx.offBLEMTUChange(function listener)
const listener = function (res) { console.log(res) }wx.onBLEMTUChange(listener)wx.offBLEMTUChange(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.onBLEConnectionStateChange(function listener)
属性 | 类型 | 说明 |
deviceId | string | 蓝牙设备 id |
connected | boolean | 是否处于已连接状态 |
wx.onBLEConnectionStateChange(function(res) {// 该方法回调中可以用于处理连接意外断开等异常情况console.log(`device ${res.deviceId} state has changed, connected: ${res.connected}`)})
该 API 使用方法为 wx.offBLEConnectionStateChange(function listener)
const listener = function (res) { console.log(res) }wx.onBLEConnectionStateChange(listener)wx.offBLEConnectionStateChange(listener) // 需传入与监听时同一个的函数对象
该 API 使用方法为 wx.onBLECharacteristicValueChange(function listener)
属性 | 类型 | 说明 |
deviceId | string | 蓝牙设备 id |
serviceId | string | 蓝牙特征对应服务的 UUID |
characteristicId | string | 蓝牙特征的 UUID |
value | ArrayBuffer | 特征最新的值 |
// ArrayBuffer转16进制字符串示例function ab2hex(buffer) {let hexArr = Array.prototype.map.call(new Uint8Array(buffer),function(bit) {return ('00' + bit.toString(16)).slice(-2)})return hexArr.join('');}wx.onBLECharacteristicValueChange(function(res) {console.log(`characteristic ${res.characteristicId} has changed, now is ${res.value}`)console.log(ab2hex(res.value))})
该 API 使用方法为 wx.offBLECharacteristicValueChange()
wx.offBLECharacteristicValueChange()
该 API 使用方法为 wx.notifyBLECharacteristicValueChange(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | 蓝牙设备 id |
serviceId | string | - | 是 | 蓝牙特征对应服务的 UUID |
characteristicId | string | - | 是 | 蓝牙特征的 UUID |
state | boolean | - | 是 | 是否启用 notify |
type | string | indication | 否 | 设置特征订阅类型,有效值有 notification 和indication |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
错误码 | 错误信息 | 说明 |
0 | ok | 正常 |
-1 | already connect | 已连接 |
10000 | not init | 未初始化蓝牙适配器 |
10001 | not available | 当前蓝牙适配器不可用 |
10002 | no device | 没有找到指定设备 |
10003 | connection fail | 连接失败 |
10004 | no service | 没有找到指定服务 |
10005 | no characteristic | 没有找到指定特征 |
10006 | no connection | 当前连接已断开 |
10007 | property not support | 当前特征不支持此操作 |
10008 | system error | 其余所有系统上报的异常 |
10009 | system not support | Android 系统特有,系统版本低于4.3不支持 BLE |
10012 | operate time out | 连接超时 |
10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 |
// 向蓝牙设备发送一个0x00的16进制数据let buffer = new ArrayBuffer(1)let dataView = new DataView(buffer)dataView.setUint8(0, 0)wx.writeBLECharacteristicValue({// 这里的 deviceId 需要在 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取deviceId,// 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取serviceId,// 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取characteristicId,// 这里的value是ArrayBuffer类型value: buffer,success (res) {console.log('writeBLECharacteristicValue success', res.errMsg)}})
该 API 使用方法为 wx.getBLEDeviceServices(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
services | Array.<Object> | 设备服务列表 |
属性 | 类型 | 说明 |
uuid | string | 蓝牙设备服务的 UUID |
isPrimary | boolean | 该服务是否为主服务 |
wx.getBLEDeviceServices({// 这里的 deviceId 需要已经通过 wx.createBLEConnection 与对应设备建立连接deviceId,success (res) {console.log('device services:', res.services)}})
该 API 使用方法为 wx.getBLEDeviceRSSI(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | 蓝牙设备 id |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
RSSI | Number | 信号强度,单位:dBm |
该 API 使用方法为 wx.getBLEDeviceCharacteristics(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | |
serviceId | string | - | 是 | |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
属性 | 类型 | 说明 |
characteristics | Array.<Object> | 设备特征列表 |
结构属性 | 类型 | 说明 |
uuid | string | 蓝牙设备特征的 UUID |
properties | Object | 该特征支持的操作类型 |
属性 | 类型 | 说明 |
read | boolean | 该特征是否支持 read 操作 |
write | boolean | 该特征是否支持 write 操作 |
notify | boolean | 该特征是否支持 notify 操作 |
indicate | boolean | 该特征是否支持 indicate 操作 |
writeNoResponse | boolean | 该特征是否支持 writeNoResponse 操作 |
writeDefault | boolean | 该特征是否支持 writeDefault 操作 |
错误码 | 错误信息 | 说明 |
0 | ok | 正常 |
-1 | already connect | 已连接 |
10000 | not init | 未初始化蓝牙适配器 |
10001 | not available | 当前蓝牙适配器不可用 |
10002 | no device | 没有找到指定设备 |
10003 | connection fail | 连接失败 |
10004 | no service | 没有找到指定服务 |
10005 | no characteristic | 没有找到指定特征 |
10006 | no connection | 当前连接已断开 |
10007 | property not support | 当前特征不支持此操作 |
10008 | system error | 其余所有系统上报的异常 |
10009 | system not support | Android 系统特有,系统版本低于4.3不支持 BLE |
10012 | operate time out | 连接超时 |
10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 |
wx.getBLEDeviceCharacteristics({// 这里的 deviceId 需要已经通过 wx.createBLEConnection 与对应设备建立链接deviceId,// 这里的 serviceId 需要在 wx.getBLEDeviceServices 接口中获取serviceId,success (res) {console.log('device getBLEDeviceCharacteristics:', res.characteristics)}})
该 API 使用方法为 wx.createBLEConnection(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | 蓝牙设备 id |
timeout | number | - | 否 | 超时时间,单位 ms,不填表示不会超时 |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
错误码 | 错误信息 | 说明 |
0 | ok | 正常 |
-1 | already connect | 已连接 |
10000 | not init | 未初始化蓝牙适配器 |
10001 | not available | 当前蓝牙适配器不可用 |
10002 | no device | 没有找到指定设备 |
10003 | connection fail | 连接失败 |
10004 | no service | 没有找到指定服务 |
10005 | no characteristic | 没有找到指定特征 |
10006 | no connection | 当前连接已断开 |
10007 | property not support | 当前特征不支持此操作 |
10008 | system error | 其余所有系统上报的异常 |
10009 | system not support | Android 系统特有,系统版本低于4.3不支持 BLE |
10012 | operate time out | 连接超时 |
10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 |
wx.createBLEConnection({deviceId,success (res) {console.log(res)}})
该 API 使用方法为 wx.closeBLEConnection(Object object)
属性 | 类型 | 默认值 | 必填 | 说明 |
deviceId | string | - | 是 | 蓝牙设备 id |
success | function | - | 否 | 接口调用成功的回调函数 |
fail | function | - | 否 | 接口调用失败的回调函数 |
complete | function | - | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
错误码 | 错误信息 | 说明 |
0 | ok | 正常 |
-1 | already connect | 已连接 |
10000 | not init | 未初始化蓝牙适配器 |
10001 | not available | 当前蓝牙适配器不可用 |
10002 | no device | 没有找到指定设备 |
10003 | connection fail | 连接失败 |
10004 | no service | 没有找到指定服务 |
10005 | no characteristic | 没有找到指定特征 |
10006 | no connection | 当前连接已断开 |
10007 | property not support | 当前特征不支持此操作 |
10008 | system error | 其余所有系统上报的异常 |
10009 | system not support | Android 系统特有,系统版本低于 4.3 不支持 BLE |
10012 | operate time out | 连接超时 |
10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 |
wx.closeBLEConnection({deviceId,success (res) {console.log(res)}})
本页内容是否解决了您的问题?