更新记录
1.0.2(2025-01-06)
- 适配Android14
- 优化连接逻辑
- 新增获取配对列表与发送数据
1.0.1(2023-02-10)
获取蓝牙列表,连接蓝牙
平台兼容性
Android | Android CPU类型 | iOS |
---|---|---|
适用版本区间:5.0 - 12.0 | armeabi-v7a:未测试,arm64-v8a:未测试,x86:未测试 | × |
原生插件通用使用流程:
- 购买插件,选择该插件绑定的项目。
- 在HBuilderX里找到项目,在manifest的app原生插件配置中勾选模块,如需要填写参数则参考插件作者的文档添加。
- 根据插件作者的提供的文档开发代码,在代码中引用插件,调用插件功能。
- 打包自定义基座,选择插件,得到自定义基座,然后运行时选择自定义基座,进行log输出测试。
- 开发完毕后正式云打包
付费原生插件目前不支持离线打包。
Android 离线打包原生插件另见文档 https://nativesupport.dcloud.net.cn/NativePlugin/offline_package/android
iOS 离线打包原生插件另见文档 https://nativesupport.dcloud.net.cn/NativePlugin/offline_package/ios
注意事项:使用HBuilderX2.7.14以下版本,如果同一插件且同一appid下购买并绑定了多个包名,提交云打包界面提示包名绑定不一致时,需要在HBuilderX项目中manifest.json->“App原生插件配置”->”云端插件“列表中删除该插件重新选择
特别提醒
- 购买本插件前,请先试用,请先试用,请先试用,满足需求之后再行购买。虚拟物品一旦购买之后无法退款;
- 如有使用上的疑问、bug,可以进交流群联系作者;
- 作者可承接各种插件定制;
- 请在合法范围内使用,若使用本插件做非法开发,本方概不负责;
插件使用文档
引入插件
const bluetooth = uni.requireNativePlugin('LY-BluetoothWeight');
- 使用
复制代码//初始化
bluetooth.initBluetooth({
isPrimitive: this.isPrimitive,//可选参数(建议传true或者不传该参数),是否返回原始数据,默认isPrimitive=true
mtu: '100', //每次最多发送多少个字节,可选参数 ---默认1021
readDataInterval: '200' //读取蓝牙数据间隔,可选参数 ---默认500毫秒
})
- 获取已绑定设备
复制代码bluetooth.getBondList(res => {
/*
res = {
data:[
{"deviceName":"","address":""},
{"deviceName":"","address":""}
]
}
*/
this.bondDeviceList = this.bondDeviceList.concat(res.data)
})
- 扫描周边设备
复制代码bluetooth.discoveryBluetooth((res) => {//多次回调,可添加到数组展示蓝牙列表
//res数据:{"status":5,"data":{"name":"蓝牙名称","address":"蓝牙地址"}}
if (res.status == 5) {
this.bluetoothList = this.bluetoothList.concat(res.data)
}
});
- 连接指定蓝牙(可通过blutoothName或者peripheralUUID(就是address)连接, blutoothName与peripheralUUID2选一即可,peripheralUUID优先)
复制代码bluetooth.connectBlutoothWithName({
blutoothName: bluetoothName, //蓝牙名称
peripheralUUID: peripheralUUID //外设UUID (address)
}, (res) => {
console.log(res.status)
switch (parseInt(res.status)) {
case 0: {
uni.showToast({
title: '请先配对电子秤',
icon: 'error'
})
}
break;
case 1: { //经典蓝牙读取数据回调
console.log(res.data)
this.weight = res.data;
}
break;
case 2: {
uni.showToast({
title: '蓝牙连接成功',
icon: 'success'
})
}
break;
case 3: {
uni.showToast({
title: '蓝牙已断开',
icon: 'error'
})
}
break;
case 7: {
uni.showToast({
title: '连接失败',
icon: 'error'
})
}
break;
case 10: {
uni.showToast({
title: '配对发送请求中',
icon: 'error'
})
}
break;
default: {
}
}
})
- 断开蓝牙
复制代码bluetooth.disconnectBluetooth();
完整示例
复制代码<template>
<view style="display: flex;flex-direction: column;width: 750rpx;">
<view class="header">
<text style="margin-bottom: 40rpx;">数据:{{weight}}</text>
<view class="btn_view">
<view class="btn" style="margin-right: 20rpx;" @click="connectBluetooth('BT04-A','')">
连接指定蓝牙
</view>
<view class="btn" style="margin-right: 20rpx;" @click="discovery">
获取蓝牙列表
</view>
<view class="btn" style="margin-right: 20rpx;" @click="disconnect">
断开蓝牙
</view>
<view class="btn" @click="sendData">
发送数据
</view>
<view class="btn" @click="bondList">
已绑定设备
</view>
</view>
</view>
<view style="width: 750rpx;display: flex;flex-direction: column;" v-if="bondDeviceList.length>0">
<view style="width: 750rpx;height: 80rpx;background-color: bisque;display: flex;align-items: center;">已配对设备
</view>
<view class="list">
<view class="cell" style="background-color: azure;" v-for="(item,index) in bondDeviceList"
:key="'bondDevice'+index" @click.stop="connectBluetooth(item.name,item.address)">
<text style="color:blueviolet;">名称:{{item.deviceName}}</text>
<text style="color: blue;">地址:{{item.address}}</text>
<view class="line" style="width: 750rpx;height: 1px;background-color: rgba(0, 0, 0, 0.4);"></view>
</view>
</view>
</view>
<view style="width: 750rpx;display: flex;flex-direction: column;" v-if="bluetoothList.length>0">
<view style="width: 750rpx;height: 80rpx;background-color: bisque;display: flex;align-items: center;">附近设备
</view>
<view class="list">
<view class="cell" v-for="(item,index) in bluetoothList" :key="'bluetooth'+index"
@click.stop="connectBluetooth(item.name,item.address)">
<text style="color:blueviolet;">名称:{{item.name}}</text>
<text style="color:blueviolet;">信号强度:{{item.rssi}}</text>
<text
style="color:blueviolet;">蓝牙类型:{{item.blueType==1?'BT':(item.blueType == 2?'BLE':(item.blueType== 3?'DUAL':'UNKNOWN'))}}</text>
<text style="color: blue;">地址:{{item.address}}</text>
<view class="line" style="width: 750rpx;height: 1px;background-color: rgba(0, 0, 0, 0.4);"></view>
</view>
</view>
</view>
</view>
</template>
<script>
const bluetooth = uni.requireNativePlugin('LY-BluetoothWeight');
export default {
data() {
return {
weight: "",
weight2: "",
bluetoothList: [],
bondDeviceList: [], //已绑定蓝牙列表
isPrimitive: true
}
},
onLoad() {
console.log("初始化")
bluetooth.initBluetooth({
isPrimitive: this.isPrimitive,
mtu: '100', //每次最多发送多少个字节,可选参数 ---默认1021
readDataInterval: '200' //读取蓝牙数据间隔,可选参数 ---默认500毫秒
})
},
onUnload() {
bluetooth.disconnectBluetooth();
},
methods: {
//获取绑定设备列表
bondList() {
bluetooth.getBondList(res => {
this.bondDeviceList = this.bondDeviceList.concat(res.data)
})
},
sendData() { //发送数据
bluetooth.sendDataToBluetooth({
data: '86', //发送数据
}, (res) => {
if (res.status == 200) { //发送成功
uni.showToast({
icon: 'success',
title: '发送成功'
})
} else if (res.status == 400) { //发送失败
uni.showToast({
icon: 'error',
title: '发送成功'
})
}
});
},
// 连接经典蓝牙
connectBluetooth(bluetoothName, peripheralUUID) {
// 名称与address二选一 address优先级高
if (bluetoothName == "" && peripheralUUID == "") {
uni.showToast({
title: '蓝牙名称或address为空',
icon: 'none'
})
return
}
console.log("蓝牙名称:" + bluetoothName + "address:" + peripheralUUID);
bluetooth.connectBlutoothWithName({
blutoothName: bluetoothName, //蓝牙名称
peripheralUUID: peripheralUUID //外设UUID (mac)
}, (res) => {
console.log(res.status)
switch (parseInt(res.status)) {
case 0: {
uni.showToast({
title: '请先配对电子秤',
icon: 'error'
})
}
break;
case 1: { //经典蓝牙读取数据回调
console.log(res.data)
this.weight = res.data;
}
break;
case 2: {
uni.showToast({
title: '蓝牙连接成功',
icon: 'success'
})
}
break;
case 3: {
uni.showToast({
title: '蓝牙已断开',
icon: 'error'
})
}
break;
case 7: {
uni.showToast({
title: '连接失败',
icon: 'error'
})
}
break;
case 10: {
uni.showToast({
title: '配对发送请求中',
icon: 'error'
})
}
break;
default: {
}
}
})
},
discovery() {
bluetooth.discoveryBluetooth((res) => {
if (res.status == 5) {
console.log(res.data)
this.bluetoothList = this.bluetoothList.concat(res.data)
}
});
},
// 断开蓝牙
disconnect() {
bluetooth.disconnectBluetooth();
}
}
}
</script>
<style>
.header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 750rpx;
background-color: aqua;
padding: 20rpx 0;
}
.btn_view {
display: flex;
align-items: center;
flex-direction: row;
justify-content: center;
}
.list {
width: 750rpx;
display: flex;
flex-direction: column;
}
.cell {
display: flex;
flex-direction: column;
justify-content: center;
padding: 10rpx;
box-sizing: border-box;
background-color: antiquewhite;
}
.btn {
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
padding: 15rpx 15rpx;
background-color: coral;
box-sizing: border-box;
background-color: #004a6e;
}
</style>
按完整示例代码 const bluetooth = uni.requireNativePlugin('BluetoothModule'); 时出错 const bluetooth = uni.requireNativePlugin('LY-BluetoothWeight'); 时可用 可是接收到的数据是反向的? 如电子砰上显示器0.62, 但组件返回结果却是 =26.0000 是我哪里设置不对?