|
@@ -214,58 +214,62 @@ function findDevice(device, callback = () => {}, fail = () => {}) {
|
|
|
// 打印查找到为蓝牙设备
|
|
|
console.log('查找到为蓝牙设备');
|
|
|
// 开始搜索蓝牙设备
|
|
|
+ setTimeout(()=> {
|
|
|
uni.startBluetoothDevicesDiscovery({
|
|
|
// 搜索成功
|
|
|
success(res) {
|
|
|
- console.log(res);
|
|
|
- // 获取搜索到的蓝牙设备
|
|
|
- uni.getBluetoothDevices({
|
|
|
- success: (res) => {
|
|
|
- console.log(res);
|
|
|
- // 遍历搜索到的蓝牙设备
|
|
|
- res.devices.forEach((data) => {
|
|
|
- // console.log(data,'data***************');
|
|
|
- // 判断设备是否为指定设备
|
|
|
- if (bluetoothDeviceConfig(device).isDevice(device, data)) {
|
|
|
- // uni.offBluetoothDeviceFound();
|
|
|
- uni.stopBluetoothDevicesDiscovery(); //查找到蓝牙设备停止搜索
|
|
|
- deviceId = data.deviceId;
|
|
|
- if (app.globalData.connectionState[deviceId]) {
|
|
|
- app.globalData.connectionState[deviceId].device = device;
|
|
|
- } else {
|
|
|
- app.globalData.connectionState[deviceId] = {
|
|
|
- device: device,
|
|
|
- deviceName:data.name,
|
|
|
- deviceId: deviceId,
|
|
|
- connected: false,
|
|
|
- data: {}
|
|
|
- };
|
|
|
- }
|
|
|
- callback(deviceId);
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- setTimeout(function () {
|
|
|
- if (!deviceId) {
|
|
|
- // uni.offBluetoothDeviceFound();
|
|
|
- uni.stopBluetoothDevicesDiscovery();
|
|
|
- var res = {
|
|
|
- errCode: 9000001,
|
|
|
- errMsg: 'openBluetoothAdapter:find not device',
|
|
|
- errno: 9000002
|
|
|
- };
|
|
|
- fail(res);
|
|
|
- }
|
|
|
- }, 5000);
|
|
|
- },
|
|
|
- fail(res) {
|
|
|
- uni.stopBluetoothDevicesDiscovery();
|
|
|
- console.log(res);
|
|
|
- fail(res);
|
|
|
- }
|
|
|
- });
|
|
|
- // 监听蓝牙设备发现事件
|
|
|
+ console.log(res,'startBluetoothDevicesDiscovery');
|
|
|
+
|
|
|
+ // 获取搜索到的蓝牙设备
|
|
|
+ uni.getBluetoothDevices({
|
|
|
+ success: (res) => {
|
|
|
+ console.log(res,'getBluetoothDevices');
|
|
|
+ // 遍历搜索到的蓝牙设备
|
|
|
+ res.devices.forEach((data) => {
|
|
|
+ // console.log(data,'data***************');
|
|
|
+ // 判断设备是否为指定设备
|
|
|
+ if (bluetoothDeviceConfig(device).isDevice(device, data)) {
|
|
|
+ // uni.offBluetoothDeviceFound();
|
|
|
+ uni.stopBluetoothDevicesDiscovery(); //查找到蓝牙设备停止搜索
|
|
|
+ deviceId = data.deviceId;
|
|
|
+ if (app.globalData.connectionState[deviceId]) {
|
|
|
+ app.globalData.connectionState[deviceId].device = device;
|
|
|
+ } else {
|
|
|
+ app.globalData.connectionState[deviceId] = {
|
|
|
+ device: device,
|
|
|
+ deviceName:data.name,
|
|
|
+ deviceId: deviceId,
|
|
|
+ connected: false,
|
|
|
+ data: {}
|
|
|
+ };
|
|
|
+ }
|
|
|
+ callback(deviceId);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ setTimeout(function () {
|
|
|
+ if (!deviceId) {
|
|
|
+ // uni.offBluetoothDeviceFound();
|
|
|
+ uni.stopBluetoothDevicesDiscovery();
|
|
|
+ var res = {
|
|
|
+ errCode: 9000001,
|
|
|
+ errMsg: 'openBluetoothAdapter:find not device',
|
|
|
+ errno: 9000002
|
|
|
+ };
|
|
|
+ fail(res);
|
|
|
+ }
|
|
|
+ }, 5000);
|
|
|
+ },
|
|
|
+ fail(res) {
|
|
|
+ uni.stopBluetoothDevicesDiscovery();
|
|
|
+ console.log(res);
|
|
|
+ fail(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // 监听蓝牙设备发现事件
|
|
|
+
|
|
|
uni.onBluetoothDeviceFound((res) => {
|
|
|
+ console.log(res,"foundDevice")
|
|
|
// console.log(res);
|
|
|
// 遍历搜索到的蓝牙设备列表
|
|
|
res.devices.forEach((data) => {
|
|
@@ -301,6 +305,8 @@ function findDevice(device, callback = () => {}, fail = () => {}) {
|
|
|
fail(res);
|
|
|
}
|
|
|
});
|
|
|
+ }, 500);
|
|
|
+
|
|
|
}
|
|
|
// 连接设备函数
|
|
|
function connectDevice(device, callback = () => {}, fail = () => {}) {
|
|
@@ -389,9 +395,12 @@ function connectDevice(device, callback = () => {}, fail = () => {}) {
|
|
|
// 函数alterConnect用于连接蓝牙设备
|
|
|
function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
|
// 判断设备是否支持蓝牙连接
|
|
|
+ console.log("xxxx1")
|
|
|
if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
|
|
|
return;
|
|
|
}
|
|
|
+ console.log("xxxx2")
|
|
|
+ console.log(deviceId)
|
|
|
// 获取蓝牙设备的服务列表
|
|
|
uni.getBLEDeviceServices({
|
|
|
deviceId: deviceId,
|
|
@@ -573,7 +582,7 @@ function bmsSet(macid, name, vars, callback = () => {}, fail = () => {}) {
|
|
|
// 定义一个函数,用于向蓝牙设备写入数据
|
|
|
function writeData(device, deviceId, data, callback = () => {}, fail = () => {}) {
|
|
|
// 如果数据长度为0,则直接返回
|
|
|
- console.log(data,'data');
|
|
|
+ console.log(data,'data写入---------------------');
|
|
|
if (data.length == 0) {
|
|
|
return;
|
|
|
}
|
|
@@ -582,13 +591,17 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
|
buffer = common.toArrayBuffer(data.shift());
|
|
|
// console.log(buffer,'buffer111');
|
|
|
// 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
|
|
|
+ setTimeout(() => {
|
|
|
uni.writeBLECharacteristicValue({
|
|
|
deviceId: deviceId,
|
|
|
serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
|
characteristicId: bluetoothDeviceConfig(device).writeID,
|
|
|
+ // writeType:'write',// 写入方式
|
|
|
value: buffer,
|
|
|
// 成功回调函数
|
|
|
success(res) {
|
|
|
+ uni.hideLoading();
|
|
|
+ console.log('写入成功');
|
|
|
// 如果数据长度为0,则调用回调函数
|
|
|
if (data.length == 0) {
|
|
|
callback(res);
|
|
@@ -606,6 +619,7 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
|
fail(res);
|
|
|
}
|
|
|
});
|
|
|
+ }, 500);
|
|
|
}
|
|
|
function stateUpdate(macid, callback = () => {}, fail = () => {}) {
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|