• uni.writeBLECharacteristicValue(OBJECT)
    • 错误
    • 注意
    • 示例代码
  • uni.readBLECharacteristicValue(OBJECT)
    • 错误
    • 注意
    • 示例代码
  • uni.onBLEConnectionStateChange(CALLBACK)
    • 示例代码
  • uni.onBLECharacteristicValueChange(CALLBACK)
    • 示例代码
  • uni.notifyBLECharacteristicValueChange(OBJECT)
    • 错误
    • 注意
    • 示例代码
  • uni.getBLEDeviceServices(OBJECT)
    • 错误
    • 示例代码
  • uni.getBLEDeviceCharacteristics(OBJECT)
    • 错误
    • 示例代码
  • uni.createBLEConnection(OBJECT)
    • 错误
    • 注意
    • 示例代码
  • uni.closeBLEConnection(OBJECT)
    • 错误
    • 示例代码

    低功耗蓝牙 API 平台差异说明

    5+AppH5微信小程序支付宝小程序百度小程序
    xx

    uni.writeBLECharacteristicValue(OBJECT)

    向低功耗蓝牙设备特征值中写入二进制数据。注意:必须设备的特征值支持 write 才可以成功调用。

    OBJECT 参数说明

    属性类型默认值必填说明
    deviceIdstring蓝牙设备 id
    serviceIdstring蓝牙特征值对应服务的 uuid
    characteristicIdstring蓝牙特征值的 uuid
    valueArrayBuffer蓝牙设备特征值对应的二进制值
    successfunction接口调用成功的回调函数
    failfunction接口调用失败的回调函数
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)

    错误

    错误码错误信息说明
    0ok正常
    10000not init未初始化蓝牙适配器
    10001not available当前蓝牙适配器不可用
    10002no device没有找到指定设备
    10003connection fail连接失败
    10004no service没有找到指定服务
    10005no characteristic没有找到指定特征值
    10006no connection当前连接已断开
    10007property not support当前特征值不支持此操作
    10008system error其余所有系统上报的异常
    10009system not supportAndroid 系统特有,系统版本低于 4.3 不支持 BLE

    注意

    • 并行调用多次会存在写失败的可能性。
    • APP不会对写入数据包大小做限制,但系统与蓝牙设备会限制蓝牙4.0单次传输的数据大小,超过最大字节数后会发生写入错误,建议每次写入不超过20字节。
    • 若单次写入数据过长,iOS 上存在系统不会有任何回调的情况(包括错误回调)。
    • 安卓平台上,在调用 notifyBLECharacteristicValueChange 成功后立即调用 writeBLECharacteristicValue 接口,在部分机型上会发生 10008 系统错误

    示例代码

    1. // 向蓝牙设备发送一个0x00的16进制数据
    2. const buffer = new ArrayBuffer(1)
    3. const dataView = new DataView(buffer)
    4. dataView.setUint8(0, 0)
    5. uni.writeBLECharacteristicValue({
    6. // 这里的 deviceId 需要在 getBluetoothDevices 或 onBluetoothDeviceFound 接口中获取
    7. deviceId,
    8. // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取
    9. serviceId,
    10. // 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取
    11. characteristicId,
    12. // 这里的value是ArrayBuffer类型
    13. value: buffer,
    14. success(res) {
    15. console.log('writeBLECharacteristicValue success', res.errMsg)
    16. }
    17. })

    uni.readBLECharacteristicValue(OBJECT)

    读取低功耗蓝牙设备的特征值的二进制数据值。注意:必须设备的特征值支持 read 才可以成功调用。

    OBJECT 参数说明

    属性类型默认值必填说明
    deviceIdstring蓝牙设备 id
    serviceIdstring蓝牙特征值对应服务的 uuid
    characteristicIdstring蓝牙特征值的 uuid
    successfunction接口调用成功的回调函数
    failfunction接口调用失败的回调函数
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)

    错误

    错误码错误信息说明
    0ok正常
    10000not init未初始化蓝牙适配器
    10001not available当前蓝牙适配器不可用
    10002no device没有找到指定设备
    10003connection fail连接失败
    10004no service没有找到指定服务
    10005no characteristic没有找到指定特征值
    10006no connection当前连接已断开
    10007property not support当前特征值不支持此操作
    10008system error其余所有系统上报的异常
    10009system not supportAndroid 系统特有,系统版本低于 4.3 不支持 BLE

    注意

    • 并行调用多次会存在读失败的可能性。
    • 接口读取到的信息需要在 onBLECharacteristicValueChange 方法注册的回调中获取。

    示例代码

    1. // 必须在这里的回调才能获取
    2. uni.onBLECharacteristicValueChange(function (characteristic) {
    3. console.log('characteristic value comed:', characteristic)
    4. })
    5. uni.readBLECharacteristicValue({
    6. // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接
    7. deviceId,
    8. // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取
    9. serviceId,
    10. // 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取
    11. characteristicId,
    12. success(res) {
    13. console.log('readBLECharacteristicValue:', res.errCode)
    14. }
    15. })

    uni.onBLEConnectionStateChange(CALLBACK)

    监听低功耗蓝牙连接状态的改变事件。包括开发者主动连接或断开连接,设备丢失,连接异常断开等等

    CALLBACK 返回参数

    属性类型说明
    deviceIdstring蓝牙设备ID
    connectedboolean是否处于已连接状态

    示例代码

    1. uni.onBLEConnectionStateChange(function (res) {
    2. // 该方法回调中可以用于处理连接意外断开等异常情况
    3. console.log(`device ${res.deviceId} state has changed, connected: ${res.connected}`)
    4. })

    uni.onBLECharacteristicValueChange(CALLBACK)

    监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification。

    CALLBACK 返回参数

    属性类型说明
    deviceIdstring蓝牙设备 id
    serviceIdstring蓝牙特征值对应服务的 uuid
    characteristicIdstring蓝牙特征值的 uuid
    valueArrayBuffer特征值最新的值

    示例代码

    1. // ArrayBuffer转16进度字符串示例
    2. function ab2hex(buffer) {
    3. const hexArr = Array.prototype.map.call(
    4. new Uint8Array(buffer),
    5. function (bit) {
    6. return ('00' + bit.toString(16)).slice(-2)
    7. }
    8. )
    9. return hexArr.join('')
    10. }
    11. uni.onBLECharacteristicValueChange(function (res) {
    12. console.log(`characteristic ${res.characteristicId} has changed, now is ${res.value}`)
    13. console.log(ab2hex(res.value))
    14. })

    uni.notifyBLECharacteristicValueChange(OBJECT)

    启用低功耗蓝牙设备特征值变化时的 notify 功能,订阅特征值。注意:必须设备的特征值支持 notify 或者 indicate 才可以成功调用。另外,必须先启用 notifyBLECharacteristicValueChange 才能监听到设备 characteristicValueChange 事件

    OBJECT 参数说明

    属性类型默认值必填说明
    deviceIdstring蓝牙设备 id
    serviceIdstring蓝牙特征值对应服务的 uuid
    characteristicIdstring蓝牙特征值的 uuid
    stateboolean是否启用 notify
    successfunction接口调用成功的回调函数
    failfunction接口调用失败的回调函数
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)

    错误

    错误码错误信息说明
    0ok正常
    10000not init未初始化蓝牙适配器
    10001not available当前蓝牙适配器不可用
    10002no device没有找到指定设备
    10003connection fail连接失败
    10004no service没有找到指定服务
    10005no characteristic没有找到指定特征值
    10006no connection当前连接已断开
    10007property not support当前特征值不支持此操作
    10008system error其余所有系统上报的异常
    10009system not supportAndroid 系统特有,系统版本低于 4.3 不支持 BLE

    注意

    • 订阅操作成功后需要设备主动更新特征值的 value,才会触发 uni.onBLECharacteristicValueChange 回调。
    • 安卓平台上,在调用 notifyBLECharacteristicValueChange 成功后立即调用 writeBLECharacteristicValue 接口,在部分机型上会发生 10008 系统错误

    示例代码

    1. uni.notifyBLECharacteristicValueChange({
    2. state: true, // 启用 notify 功能
    3. // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接
    4. deviceId,
    5. // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取
    6. serviceId,
    7. // 这里的 characteristicId 需要在 getBLEDeviceCharacteristics 接口中获取
    8. characteristicId,
    9. success(res) {
    10. console.log('notifyBLECharacteristicValueChange success', res.errMsg)
    11. }
    12. })

    uni.getBLEDeviceServices(OBJECT)

    获取蓝牙设备所有服务(service)。

    OBJECT 参数说明

    属性类型默认值必填说明
    deviceIdstring蓝牙设备 id
    successfunction接口调用成功的回调函数
    failfunction接口调用失败的回调函数
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)

    success 返回参数说明:

    属性类型说明
    servicesArray<Object>设备服务列表

    res.services 的结构

    属性类型说明
    uuidstring蓝牙设备服务的 uuid
    isPrimaryboolean该服务是否为主服务

    错误

    错误码错误信息说明
    0ok正常
    10000not init未初始化蓝牙适配器
    10001not available当前蓝牙适配器不可用
    10002no device没有找到指定设备
    10003connection fail连接失败
    10004no service没有找到指定服务
    10005no characteristic没有找到指定特征值
    10006no connection当前连接已断开
    10007property not support当前特征值不支持此操作
    10008system error其余所有系统上报的异常
    10009system not supportAndroid 系统特有,系统版本低于 4.3 不支持 BLE

    示例代码

    1. uni.getBLEDeviceServices({
    2. // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接
    3. deviceId,
    4. success(res) {
    5. console.log('device services:', res.services)
    6. }
    7. })

    uni.getBLEDeviceCharacteristics(OBJECT)

    获取蓝牙设备某个服务中所有特征值(characteristic)。

    OBJECT 参数说明

    属性类型默认值必填说明
    deviceIdstring蓝牙设备 id
    serviceIdstring蓝牙服务 uuid,需要使用 getBLEDeviceServices 获取
    successfunction接口调用成功的回调函数
    failfunction接口调用失败的回调函数
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)

    success 返回参数说明:

    属性类型说明
    characteristicsArray<Object>设备服务列表

    res.characteristics 的结构

    属性类型说明
    uuidstring蓝牙设备特征值的 uuid
    propertiesObject该特征值支持的操作类型

    properties 的结构

    属性类型说明
    readboolean该特征值是否支持 read 操作
    writeboolean该特征值是否支持 write 操作
    notifyboolean该特征值是否支持 notify 操作
    indicateboolean该特征值是否支持 indicate 操作

    错误

    错误码错误信息说明
    0ok正常
    10000not init未初始化蓝牙适配器
    10001not available当前蓝牙适配器不可用
    10002no device没有找到指定设备
    10003connection fail连接失败
    10004no service没有找到指定服务
    10005no characteristic没有找到指定特征值
    10006no connection当前连接已断开
    10007property not support当前特征值不支持此操作
    10008system error其余所有系统上报的异常
    10009system not supportAndroid 系统特有,系统版本低于 4.3 不支持 BLE

    示例代码

    1. uni.getBLEDeviceCharacteristics({
    2. // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接
    3. deviceId,
    4. // 这里的 serviceId 需要在 getBLEDeviceServices 接口中获取
    5. serviceId,
    6. success(res) {
    7. console.log('device getBLEDeviceCharacteristics:', res.characteristics)
    8. }
    9. })

    uni.createBLEConnection(OBJECT)

    连接低功耗蓝牙设备。

    若APP在之前已有搜索过某个蓝牙设备,并成功建立连接,可直接传入之前搜索获取的 deviceId 直接尝试连接该设备,无需进行搜索操作。

    OBJECT 参数说明

    属性类型默认值必填说明
    deviceIdstring用于区分设备的 id
    timeoutnumber超时时间,单位ms,不填表示不会超时
    successfunction接口调用成功的回调函数
    failfunction接口调用失败的回调函数
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)

    错误

    错误码错误信息说明
    0ok正常
    10000not init未初始化蓝牙适配器
    10001not available当前蓝牙适配器不可用
    10002no device没有找到指定设备
    10003connection fail连接失败
    10004no service没有找到指定服务
    10005no characteristic没有找到指定特征值
    10006no connection当前连接已断开
    10007property not support当前特征值不支持此操作
    10008system error其余所有系统上报的异常
    10009system not supportAndroid 系统特有,系统版本低于 4.3 不支持 BLE

    注意

    • 请保证尽量成对的调用 createBLEConnectioncloseBLEConnection 接口。安卓如果多次调用 createBLEConnection 创建连接,有可能导致系统持有同一设备多个连接的实例,导致调用 closeBLEConnection 的时候并不能真正的断开与设备的连接。
    • 蓝牙连接随时可能断开,建议监听 uni.onBLEConnectionStateChange 回调事件,当蓝牙设备断开时按需执行重连操作
    • 若对未连接的设备或已断开连接的设备调用数据读写操作的接口,会返回 10006 错误,建议进行重连操作。

    示例代码

    1. uni.createBLEConnection({
    2. // 这里的 deviceId 需要已经通过 createBLEConnection 与对应设备建立链接
    3. deviceId,
    4. success(res) {
    5. console.log(res)
    6. }
    7. })

    uni.closeBLEConnection(OBJECT)

    断开与低功耗蓝牙设备的连接。

    OBJECT 参数说明

    属性类型默认值必填说明
    deviceIdstring用于区分设备的 id
    successfunction接口调用成功的回调函数
    failfunction接口调用失败的回调函数
    completefunction接口调用结束的回调函数(调用成功、失败都会执行)

    错误

    错误码错误信息说明
    0ok正常
    10000not init未初始化蓝牙适配器
    10001not available当前蓝牙适配器不可用
    10002no device没有找到指定设备
    10003connection fail连接失败
    10004no service没有找到指定服务
    10005no characteristic没有找到指定特征值
    10006no connection当前连接已断开
    10007property not support当前特征值不支持此操作
    10008system error其余所有系统上报的异常
    10009system not supportAndroid 系统特有,系统版本低于 4.3 不支持 BLE

    示例代码

    1. uni.closeBLEConnection({
    2. deviceId,
    3. success(res) {
    4. console.log(res)
    5. }
    6. })

    发现错误?想参与编辑?在 GitHub 上编辑此页面!