更新记录
1.0.1(2024-11-29)
下载此版本
优化
1.0.0(2024-11-28)
下载此版本
初版
平台兼容性
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');
})