uniapp
⼀、连接蓝⽛设备
1.
先判断本机的蓝⽛是否打开
initBle() {
console.log('--------------------初始化蓝⽛----------------');
this.bleDevs = [];
uni.openBluetoothAdapter({
success: (res) => { //已打开
success: (row) => {
console.log(row)
// 开始搜索蓝⽛设备
this.startBluetoothDeviceDiscovery()
},
fail(error) {
uni.showToast({
icon: 'none',
title: '查看⼿机蓝⽛是否打开'
});
}
});
},
fail: err => { //未打开
uni.showToast({
icon: 'none',
title: '查看⼿机蓝⽛是否打开'
});
}
})
},
2.搜索蓝⽛
// 开始搜索蓝⽛设备
startBluetoothDeviceDiscovery() {
let _this = this
uni.startBluetoothDevicesDiscovery({
success: (res) => {
console.log('搜索蓝⽛外围设备完成', res)
_this.timer1 = setTimeout(() => { //加个延迟、⽬的是为了设备搜索完毕再获取列表,不然获取为空列表      // 获取设备列表
_BluetoothDeviceFound()
}, 1000)
},
fail: (err)=> {
console.log(err)
}
})
},
3.获取设备列表
// 获取设备列表
onBluetoothDeviceFound() {
let that = this
success: function(res) {
//过滤掉name为空的设备
var bluetoothArr = res.devices.filter(function(obj) {
return obj.name != ""
})
that.bleDevs = bluetoothArr
},
fail: function() {
console.log("搜索蓝⽛设备失败");
uni.showToast({
title: '搜索蓝⽛设备失败或附件暂⽆开启的蓝⽛设备',
icon: 'none',
duration: 2000
})
},
complete: function() {
console.log('搜索完成')
//设备获取完成之后停⽌搜索
uni.stopBluetoothDevicesDiscovery({
success(res) {
console.log('停⽌搜索蓝⽛', res)
}
})
}
})
},
4.连接设备
//选择设备连接把deviceId传进来
createBLEConnection(deviceId) {
let that = this
this.deviceId = deviceId
this.pageLoading = true
//连接蓝⽛
// 这⾥的 deviceId 需要已经通过 createBLEConnection 与对应设备建⽴链接    deviceId: this.deviceId,
success(res) {
console.log("蓝⽛连接成功", res)
that.timer2 = setTimeout(() => {
// 设置最⼤传输字节这⾥根据情况⾃⼰设置
uni.setBLEMTU({
deviceId: that.deviceId,
mtu: 500,//传输字节数
success() {
// 获取已连接设备列表
// 连接成功之后把已连接的设备从设备列表中删除
let index = ''
that.bleDevs.forEach((i, key) => {
if (i.deviceId == that.deviceId) {
index = key
}
})
if (index !== '') {
that.bleDevs.splice(index, 1)
}
that.pageLoading = false
//获取服务
// BLEDeviceServices()
}
})
}, 1000)
},
fail(res) {
console.log("蓝⽛连接失败", res)
uni.showToast({
icon: 'none',
title: '蓝⽛连接失败'
})
}
})
},
⼆、接收数据
只有设备的特征值⽀持notify 才能接收数据
1. 获取设备服务列表
//获取蓝⽛的所有服务
getBLEDeviceServices(deviceId) {
let that = this
deviceId: deviceId,
success: (res) => {
console.log("获取服务成功",res)
//这⾥会获取到好多个services  uuid  根据实际情况选择⾃⼰需要的服务
console.log("services", res.services)
if (res.services.length > 0) {
let serviceId = res.services[2].uuid //根据我们的设备使⽤的是第三个服务
that.serviceId=res.services[2].uuid
//获取服务特征
}
},
fail(res) {
console.log("获取蓝⽛失败", res)
}
})
},
2. 获取蓝⽛特征
如果 notify:true 或indicate :true ⽀持接收数据 write:true ⽀持发送数据 read:true ⽀持读取数据//获取蓝⽛特征
getBLEDeviceCharacteristics(deviceId, serviceId) {
console.log("------------------进⼊特征------------------");
let that = this
deviceId: deviceId,
serviceId: serviceId,
success: (res) => {
console.log("res.characteristics.", res.characteristics)
that.characteristics = res.characteristics
// 这⾥哪个特征⽀持notify或indicate  就选择哪个
that.characteristicId = res.characteristics[0].uuid // 接收数据的特征uuid
that.characteristicId2 = res.characteristics[1].uuid  //发送数据的特征uuid
},
fail: (res) => {
console.log(res)
}
})
},
flutter uniapp 哪个好3. 接收设备数据
// 启⽤ notify 功能
notifyBLECharacteristicValueChange(deviceId,serviceId,characteristicId) {
let that = this
state: true, // 启⽤ notify 功能
deviceId: deviceId,
serviceId: serviceId,
characteristicId: characteristicId,
success: (res) => {
/
/监听设备发送数据
console.log("监听成功", res.value)
// ArrayBuffer
//res.value是ArrayBuffer类型的,转换成需要的格式,我们再进⾏操作
//这是转换成ASCII码
let str =that.ab2ascii(res.value)
//转换后的数据
that.data = str
})
},
fail: (res) => {
console.log('启⽤ notify 功能失败', res)
uni.showToast({
icon:'none',
title:'设备暂不⽀持接收数据',
duration:3000
})
}
})
},
// ⼆进制流转ascii
ab2ascii(buffer) {
var str = Array.prototype.map.call(
new Uint8Array(buffer),
function(bit) {
return String.fromCharCode(bit);
}
)
return str.join('');
},
三、向设备发送数据,并接收返回数据
发送数据和接收数据的操作类似先获取服务和⽀持write的蓝⽛特征,⽀持write的特征写⼊数据、⽀持notify 接收数据// 向蓝⽛写⼊数据
BleWrite(instruction) {
//instruction  写⼊的数据
let _this = this
let serviceId = _this.serviceId
//characteristicId2  是⽀持write 特征uuid
let characteristicId = _this.characteristicId2
let deviceId = _this.deviceId
//转换数据格式
const buffer = _this.asciiToArrayBuffer(instruction);
uni.writeBLECharacteristicValue({
deviceId, // 蓝⽛设备 deviceId
serviceId, // 蓝⽛服务uuid,即第⼆个uuid
characteristicId, // 蓝⽛特征值的 (即 writeId)
value: buffer, // 这⾥的value是ArrayBuffer类型
writeType: 'write',
success(res) {
console.log('指令下发成功==', res)
//写⼊成功之后如需接收数据在上⾯的接收数据处获取返回的结果
},
fail(err) {
console.log('指令发送失败', err)
uni.showToast({
icon: "none",
title: "指令发送失败",
duration: 3000
})
}
})
},
// ascii  转⼆进制流
asciiToArrayBuffer(str) {
if (!str) {
return new ArrayBuffer(0);
}
var buffer = new ArrayBuffer(str.length);
// let dataView = new DataView(buffer)
var bufView = new Uint8Array(buffer);
for (var i = 0, strLen = str.length; i < strLen; i++) {    bufView[i] = str.charCodeAt(i);
}
return buffer;
},

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。