更新记录

1.0.1(2024-11-29) 下载此版本

优化

1.0.0(2024-11-28) 下载此版本

初版


平台兼容性

Vue2 Vue3
App 快应用 微信小程序 支付宝小程序 百度小程序 字节小程序 QQ小程序
app-vue × × × × × ×
钉钉小程序 快手小程序 飞书小程序 京东小程序
× × × ×
H5-Safari Android Browser 微信浏览器(Android) QQ浏览器(Android) Chrome IE Edge Firefox PC-Safari
× × × × × × × × ×

x-bluetooth

蓝牙设备通信

示例

import { sleep } from '@/uni_modules/x-tools/tools/index.js'
import { bufferUtil, DeviceControl } from '@/uni_modules/x-bluetooth/index.js'

const deviceControl = new DeviceControl({
    mode: 'name', // 通过设备名寻找
    deviceName: 'BCL', // 设备名
    serviceId: 'xxxxxxxx', // 服务 uuid
    notifyCharacteristicId: 'xxxxxxxx', // 监听特征值 uuid
    writeCharacteristicId: 'xxxxxxxx', // 写入特征值 uuid
})

deviceControl.startFind(async (device, devices) => {
    console.log('找到目标设备', device);

    if (device.deviceId === deviceControl.connectedDeviceId) return

    await deviceControl.connect(device.deviceId)
    console.log('connect');

    await sleep(1000)
    await deviceControl.setNotify()
    console.log('notify');

    await sleep(1000)
    deviceControl.startListenerCharacteristicValueChange()

    await sleep(1000)
    const cmd = bufferUtil.arr2ab([0, 11, 0x10, 1])
    await deviceControl.execCmd(cmd).then(res => {
        const timestamp = parseInt(res.slice(0, 8).reverse().join(''), 16)
        console.log('设备当前时间', new Date(timestamp).toString());
        console.log('当前时间', new Date().toString());
    }).catch(console.log)

}).then(res => {
    console.log('startFind');
})

隐私、权限声明

1. 本插件需要申请的系统权限列表:

蓝牙相关权限

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

许可协议

MIT协议

暂无用户评论。

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问