|
@@ -370,9 +370,10 @@ function connectDevice(device, callback = () => {}, fail = () => {}) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- const deviceIds = app.globalData.connectionState[device.mac_id].deviceId
|
|
|
|
|
|
+ const car_sn=uni.getStorageSync('car_info').car_sn
|
|
|
|
+ const deviceIds = app.globalData.connectionState[car_sn].deviceId
|
|
console.log(deviceIds,'deviceIds');
|
|
console.log(deviceIds,'deviceIds');
|
|
- const device_name=app.globalData.connectionState[device.mac_id].deviceName
|
|
|
|
|
|
+ const device_name=app.globalData.connectionState[car_sn].deviceName
|
|
// 创建蓝牙连接
|
|
// 创建蓝牙连接
|
|
uni.createBLEConnection({
|
|
uni.createBLEConnection({
|
|
deviceId: deviceIds,
|
|
deviceId: deviceIds,
|
|
@@ -433,127 +434,131 @@ function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
}
|
|
}
|
|
console.log("xxxx2")
|
|
console.log("xxxx2")
|
|
console.log(deviceId)
|
|
console.log(deviceId)
|
|
- // 获取蓝牙设备的服务列表
|
|
|
|
|
|
+ var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
setTimeout(()=>{
|
|
setTimeout(()=>{
|
|
- uni.getBLEDeviceServices({
|
|
|
|
- deviceId: deviceId,
|
|
|
|
- success(res) {
|
|
|
|
- console.log(res,'res1111');
|
|
|
|
- console.log(bluetoothDeviceConfig(device).writeServiceID)
|
|
|
|
- // 获取蓝牙设备的写特征值
|
|
|
|
- setTimeout(()=>{
|
|
|
|
- uni.getBLEDeviceCharacteristics({
|
|
|
|
- deviceId: deviceId,
|
|
|
|
- serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
|
|
- success(res) {
|
|
|
|
- console.log(res,'res22222');
|
|
|
|
- // 获取蓝牙设备的读特征值
|
|
|
|
- uni.getBLEDeviceCharacteristics({
|
|
|
|
- deviceId: deviceId,
|
|
|
|
- serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
|
- success(res) {
|
|
|
|
- console.log(res,'res3333');
|
|
|
|
- // 监听蓝牙设备的读特征值变化
|
|
|
|
- uni.notifyBLECharacteristicValueChange({
|
|
|
|
- state: true,
|
|
|
|
- deviceId: deviceId,
|
|
|
|
- serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
|
- characteristicId: bluetoothDeviceConfig(device).readID,
|
|
|
|
- success(res) {
|
|
|
|
- console.log(res);
|
|
|
|
- // 判断设备是否支持 ,并且当前平台是否为安卓
|
|
|
|
- if (bluetoothDeviceConfig(device).MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
|
|
|
|
- // 设置蓝牙设备的MTU
|
|
|
|
- uni.setBLEMTU({
|
|
|
|
- deviceId: deviceId,
|
|
|
|
- mtu: bluetoothDeviceConfig(device).MTU,
|
|
|
|
- success: (res) => {
|
|
|
|
- console.log('setBLEMTU success>>', res);
|
|
|
|
- // 判断设备是否有alterConnect方法
|
|
|
|
- if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
|
- var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
|
- console.log(data[0],'data111111');
|
|
|
|
- // 判断alterConnect方法是否返回数据
|
|
|
|
- if (data) {
|
|
|
|
- // 写入数据
|
|
|
|
- setTimeout(()=>{
|
|
|
|
- writeData(device, deviceId, data, callback, fail);
|
|
|
|
- },100)
|
|
|
|
|
|
+ writeData(device, deviceId, data, callback, fail);
|
|
|
|
+ },3000)
|
|
|
|
+ // 获取蓝牙设备的服务列表
|
|
|
|
+ // setTimeout(()=>{
|
|
|
|
+ // uni.getBLEDeviceServices({
|
|
|
|
+ // deviceId: deviceId,
|
|
|
|
+ // success(res) {
|
|
|
|
+ // console.log(res,'res1111');
|
|
|
|
+ // console.log(bluetoothDeviceConfig(device).writeServiceID)
|
|
|
|
+ // // 获取蓝牙设备的写特征值
|
|
|
|
+ // setTimeout(()=>{
|
|
|
|
+ // uni.getBLEDeviceCharacteristics({
|
|
|
|
+ // deviceId: deviceId,
|
|
|
|
+ // serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
|
|
+ // success(res) {
|
|
|
|
+ // console.log(res,'res22222');
|
|
|
|
+ // // 获取蓝牙设备的读特征值
|
|
|
|
+ // uni.getBLEDeviceCharacteristics({
|
|
|
|
+ // deviceId: deviceId,
|
|
|
|
+ // serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
|
+ // success(res) {
|
|
|
|
+ // console.log(res,'res3333');
|
|
|
|
+ // // 监听蓝牙设备的读特征值变化
|
|
|
|
+ // uni.notifyBLECharacteristicValueChange({
|
|
|
|
+ // state: true,
|
|
|
|
+ // deviceId: deviceId,
|
|
|
|
+ // serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
|
+ // characteristicId: bluetoothDeviceConfig(device).readID,
|
|
|
|
+ // success(res) {
|
|
|
|
+ // console.log(res);
|
|
|
|
+ // // 判断设备是否支持 ,并且当前平台是否为安卓
|
|
|
|
+ // if (bluetoothDeviceConfig(device).MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
|
|
|
|
+ // // 设置蓝牙设备的MTU
|
|
|
|
+ // uni.setBLEMTU({
|
|
|
|
+ // deviceId: deviceId,
|
|
|
|
+ // mtu: bluetoothDeviceConfig(device).MTU,
|
|
|
|
+ // success: (res) => {
|
|
|
|
+ // console.log('setBLEMTU success>>', res);
|
|
|
|
+ // // 判断设备是否有alterConnect方法
|
|
|
|
+ // if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
|
+ // var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
|
+ // console.log(data[0],'data111111');
|
|
|
|
+ // // 判断alterConnect方法是否返回数据
|
|
|
|
+ // if (data) {
|
|
|
|
+ // // 写入数据
|
|
|
|
+ // setTimeout(()=>{
|
|
|
|
+ // writeData(device, deviceId, data, callback, fail);
|
|
|
|
+ // },3000)
|
|
|
|
|
|
- } else {
|
|
|
|
- // 调用回调函数
|
|
|
|
- callback(res);
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- // 调用回调函数
|
|
|
|
- callback(res);
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- fail: (res) => {
|
|
|
|
- console.log('setBLEMTU fail>>', res);
|
|
|
|
- // 判断设备是否有alterConnect方法
|
|
|
|
- if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
|
- var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
|
- // 判断alterConnect方法是否返回数据
|
|
|
|
- if (data) {
|
|
|
|
- // 写入数据
|
|
|
|
- writeData(device, deviceId, data, callback, fail);
|
|
|
|
- } else {
|
|
|
|
- // 调用回调函数
|
|
|
|
- callback(res);
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- // 调用回调函数
|
|
|
|
- callback(res);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- } else {
|
|
|
|
- // 判断设备是否有alterConnect方法
|
|
|
|
- if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
|
- var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
|
- // 判断alterConnect方法是否返回数据
|
|
|
|
- if (data) {
|
|
|
|
- // 写入数据
|
|
|
|
- writeData(device, deviceId, data, callback, fail);
|
|
|
|
- } else {
|
|
|
|
- // 调用回调函数
|
|
|
|
- callback(res);
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- // 调用回调函数
|
|
|
|
- callback(res);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- fail(res) {
|
|
|
|
- // 调用失败回调函数
|
|
|
|
- fail(res);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- fail(res) {
|
|
|
|
- // 调用失败回调函数
|
|
|
|
- fail(res);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- fail(res) {
|
|
|
|
- console.log('getBLEDeviceServices fail',res);
|
|
|
|
- // 调用失败回调函数
|
|
|
|
- fail(res);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },500)
|
|
|
|
|
|
+ // } else {
|
|
|
|
+ // // 调用回调函数
|
|
|
|
+ // callback(res);
|
|
|
|
+ // }
|
|
|
|
+ // } else {
|
|
|
|
+ // // 调用回调函数
|
|
|
|
+ // callback(res);
|
|
|
|
+ // }
|
|
|
|
+ // },
|
|
|
|
+ // fail: (res) => {
|
|
|
|
+ // console.log('setBLEMTU fail>>', res);
|
|
|
|
+ // // 判断设备是否有alterConnect方法
|
|
|
|
+ // if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
|
+ // var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
|
+ // // 判断alterConnect方法是否返回数据
|
|
|
|
+ // if (data) {
|
|
|
|
+ // // 写入数据
|
|
|
|
+ // writeData(device, deviceId, data, callback, fail);
|
|
|
|
+ // } else {
|
|
|
|
+ // // 调用回调函数
|
|
|
|
+ // callback(res);
|
|
|
|
+ // }
|
|
|
|
+ // } else {
|
|
|
|
+ // // 调用回调函数
|
|
|
|
+ // callback(res);
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // } else {
|
|
|
|
+ // // 判断设备是否有alterConnect方法
|
|
|
|
+ // if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
|
+ // var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
|
+ // // 判断alterConnect方法是否返回数据
|
|
|
|
+ // if (data) {
|
|
|
|
+ // // 写入数据
|
|
|
|
+ // writeData(device, deviceId, data, callback, fail);
|
|
|
|
+ // } else {
|
|
|
|
+ // // 调用回调函数
|
|
|
|
+ // callback(res);
|
|
|
|
+ // }
|
|
|
|
+ // } else {
|
|
|
|
+ // // 调用回调函数
|
|
|
|
+ // callback(res);
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // },
|
|
|
|
+ // fail(res) {
|
|
|
|
+ // // 调用失败回调函数
|
|
|
|
+ // fail(res);
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // },
|
|
|
|
+ // fail(res) {
|
|
|
|
+ // // 调用失败回调函数
|
|
|
|
+ // fail(res);
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // },
|
|
|
|
+ // fail(res) {
|
|
|
|
+ // console.log('getBLEDeviceServices fail',res);
|
|
|
|
+ // // 调用失败回调函数
|
|
|
|
+ // fail(res);
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // },500)
|
|
|
|
|
|
- },
|
|
|
|
- fail(res) {
|
|
|
|
|
|
+ // },
|
|
|
|
+ // fail(res) {
|
|
|
|
|
|
- // 调用失败回调函数
|
|
|
|
- fail(res);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },500)
|
|
|
|
|
|
+ // // 调用失败回调函数
|
|
|
|
+ // fail(res);
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // },500)
|
|
}
|
|
}
|
|
// 关闭设备连接
|
|
// 关闭设备连接
|
|
function closeDevice(macid, callback = () => {}, fail = () => {}) {
|
|
function closeDevice(macid, callback = () => {}, fail = () => {}) {
|
|
@@ -637,7 +642,6 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
// buffer = common.toArrayBuffer(data.shift());
|
|
// buffer = common.toArrayBuffer(data.shift());
|
|
|
|
|
|
//buffer = common.toArrayBuffer(data.shift());
|
|
//buffer = common.toArrayBuffer(data.shift());
|
|
- console.log()
|
|
|
|
var byteArray = data.shift()
|
|
var byteArray = data.shift()
|
|
const buffer = new ArrayBuffer(byteArray.length);
|
|
const buffer = new ArrayBuffer(byteArray.length);
|
|
const dataView = new DataView(buffer);
|
|
const dataView = new DataView(buffer);
|
|
@@ -650,7 +654,8 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
// console.log(buffer,'buffer111');
|
|
// console.log(buffer,'buffer111');
|
|
// 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
|
|
// 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
|
|
// setTimeout(() => {
|
|
// setTimeout(() => {
|
|
- uni.writeBLECharacteristicValue({
|
|
|
|
|
|
+ plus.bluetooth.writeBLECharacteristicValue({
|
|
|
|
+ // uni.writeBLECharacteristicValue({
|
|
deviceId: deviceId,
|
|
deviceId: deviceId,
|
|
serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
characteristicId: bluetoothDeviceConfig(device).writeID,
|
|
characteristicId: bluetoothDeviceConfig(device).writeID,
|
|
@@ -668,7 +673,7 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
// // 否则,延时500毫秒后再次调用writeData函数
|
|
// // 否则,延时500毫秒后再次调用writeData函数
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
writeData(device, deviceId, data, callback, fail);
|
|
writeData(device, deviceId, data, callback, fail);
|
|
- }, 60);
|
|
|
|
|
|
+ }, 150);
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 失败回调函数
|
|
// 失败回调函数
|
|
@@ -1075,12 +1080,12 @@ function sendOTACommand(macid, callback = () => {}, fail = () => {}) {
|
|
function executeDeviceCommand(macid, commandName, callback = () => {}, fail = () => {}) {
|
|
function executeDeviceCommand(macid, commandName, callback = () => {}, fail = () => {}) {
|
|
console.log('test');
|
|
console.log('test');
|
|
const app = getApp();
|
|
const app = getApp();
|
|
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
|
|
|
+ const deviceId = app.globalData.connectionState[macid].deviceId
|
|
if (deviceId == undefined) {
|
|
if (deviceId == undefined) {
|
|
fail();
|
|
fail();
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
- const device = app.globalData.connectionState[deviceId].device;
|
|
|
|
|
|
+ const device = app.globalData.connectionState[macid].device;
|
|
if (!bluetoothDeviceConfig(device)[commandName]) {
|
|
if (!bluetoothDeviceConfig(device)[commandName]) {
|
|
fail();
|
|
fail();
|
|
return false;
|
|
return false;
|
|
@@ -1134,12 +1139,12 @@ function getSensitivity(macid, callback = () => {}, fail = () => {}) {
|
|
//设置灵敏度
|
|
//设置灵敏度
|
|
function setSensitivity(macid,type, callback = () => {}, fail = () => {}) {
|
|
function setSensitivity(macid,type, callback = () => {}, fail = () => {}) {
|
|
const app = getApp();
|
|
const app = getApp();
|
|
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
|
|
|
+ const deviceId = app.globalData.connectionState[macid].deviceId
|
|
if (deviceId == undefined) {
|
|
if (deviceId == undefined) {
|
|
fail();
|
|
fail();
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
- const device = app.globalData.connectionState[deviceId].device;
|
|
|
|
|
|
+ const device = app.globalData.connectionState[macid].device;
|
|
if (!bluetoothDeviceConfig(device)[setSensitivity]) {
|
|
if (!bluetoothDeviceConfig(device)[setSensitivity]) {
|
|
fail();
|
|
fail();
|
|
return false;
|
|
return false;
|