|
@@ -18,7 +18,8 @@ const bluetoothDevices = {
|
|
AD3BTS: require('./bluetooth/AD3BTS.js'),
|
|
AD3BTS: require('./bluetooth/AD3BTS.js'),
|
|
BWJT: require('./bluetooth/ZXBT_JL.js'),
|
|
BWJT: require('./bluetooth/ZXBT_JL.js'),
|
|
JTBMS: require('./bluetooth/ZXBT_JL.js'),
|
|
JTBMS: require('./bluetooth/ZXBT_JL.js'),
|
|
- ZXCAR: require('./bluetooth/ZXCar.js')
|
|
|
|
|
|
+ ZXZK: require('./bluetooth/ZXCar.js') //flk中控
|
|
|
|
+ // ZXCAR: require('./bluetooth/ZXCar.js') //flk中控
|
|
};
|
|
};
|
|
//初始化蓝牙
|
|
//初始化蓝牙
|
|
function initBluetooth() {
|
|
function initBluetooth() {
|
|
@@ -50,24 +51,26 @@ function initBluetooth() {
|
|
//监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
|
|
//监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
|
|
uni.onBLECharacteristicValueChange((res) => {
|
|
uni.onBLECharacteristicValueChange((res) => {
|
|
console.log(res,'restest1111');
|
|
console.log(res,'restest1111');
|
|
- if (app.globalData.connectionState[res.deviceId]) {
|
|
|
|
- const device = app.globalData.connectionState[res.deviceId].device;
|
|
|
|
|
|
+ const car_sn=uni.getStorageSync('car_info').car_sn;
|
|
|
|
+ if (app.globalData.connectionState[car_sn]) {
|
|
|
|
+ const device = app.globalData.connectionState[car_sn].device;
|
|
console.log(res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase(),'00000');
|
|
console.log(res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase(),'00000');
|
|
if (
|
|
if (
|
|
res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase() &&
|
|
res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase() &&
|
|
res.characteristicId.toUpperCase() == bluetoothDeviceConfig(device).readID.toUpperCase()
|
|
res.characteristicId.toUpperCase() == bluetoothDeviceConfig(device).readID.toUpperCase()
|
|
) {
|
|
) {
|
|
- var data = bluetoothDeviceConfig(device).readData(device, res.value, app.globalData.connectionState[res.deviceId].data);
|
|
|
|
- // console.log(data,'data--------');
|
|
|
|
|
|
+ console.log(app.globalData.connectionState[car_sn],bluetoothDeviceConfig(device),'data--------');
|
|
|
|
+ var data = bluetoothDeviceConfig(device).readData(device, res.value, app.globalData.connectionState[car_sn].data);
|
|
|
|
+
|
|
if (data) {
|
|
if (data) {
|
|
const app = getApp();
|
|
const app = getApp();
|
|
- app.globalData.connectionState[res.deviceId].data = data;
|
|
|
|
|
|
+ app.globalData.connectionState[car_sn].data = data;
|
|
if (app.globalData.characteristicStateChangeFunc[device.mac_id]) {
|
|
if (app.globalData.characteristicStateChangeFunc[device.mac_id]) {
|
|
Object.keys(app.globalData.characteristicStateChangeFunc[device.mac_id]).forEach((p) =>
|
|
Object.keys(app.globalData.characteristicStateChangeFunc[device.mac_id]).forEach((p) =>
|
|
app.globalData.characteristicStateChangeFunc[device.mac_id][p](data)
|
|
app.globalData.characteristicStateChangeFunc[device.mac_id][p](data)
|
|
);
|
|
);
|
|
- // common.simpleToast(app.globalData.connectionState[res.deviceId].data)
|
|
|
|
- console.log(app.globalData.connectionState[res.deviceId].data);
|
|
|
|
|
|
+ // common.simpleToast(app.globalData.connectionState[car_sn].data)
|
|
|
|
+ console.log(app.globalData.connectionState[car_sn].data);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -243,18 +246,22 @@ function findDevice(device, callback = () => {}, fail = () => {}) {
|
|
res.devices.forEach((data) => {
|
|
res.devices.forEach((data) => {
|
|
// console.log(data,'data***************');
|
|
// console.log(data,'data***************');
|
|
// 判断设备是否为指定设备
|
|
// 判断设备是否为指定设备
|
|
|
|
+ console.log('------',bluetoothDeviceConfig(device).isDevice(device, data));
|
|
if (bluetoothDeviceConfig(device).isDevice(device, data)) {
|
|
if (bluetoothDeviceConfig(device).isDevice(device, data)) {
|
|
const app = getApp();
|
|
const app = getApp();
|
|
// uni.offBluetoothDeviceFound();
|
|
// uni.offBluetoothDeviceFound();
|
|
uni.stopBluetoothDevicesDiscovery(); //查找到蓝牙设备停止搜索
|
|
uni.stopBluetoothDevicesDiscovery(); //查找到蓝牙设备停止搜索
|
|
- deviceId = data.deviceId;
|
|
|
|
|
|
+ const car_info= uni.getStorageSync('car_info')
|
|
|
|
+ const deviceIds = data.deviceId;
|
|
|
|
+ console.log(deviceIds,'deviceIds123');
|
|
|
|
+ const deviceId = car_info.car_sn;
|
|
if (app.globalData.connectionState[deviceId]) {
|
|
if (app.globalData.connectionState[deviceId]) {
|
|
app.globalData.connectionState[deviceId].device = device;
|
|
app.globalData.connectionState[deviceId].device = device;
|
|
} else {
|
|
} else {
|
|
app.globalData.connectionState[deviceId] = {
|
|
app.globalData.connectionState[deviceId] = {
|
|
device: device,
|
|
device: device,
|
|
deviceName:data.name,
|
|
deviceName:data.name,
|
|
- deviceId: deviceId,
|
|
|
|
|
|
+ deviceId: deviceIds,
|
|
connected: false,
|
|
connected: false,
|
|
data: {}
|
|
data: {}
|
|
};
|
|
};
|
|
@@ -294,7 +301,10 @@ function findDevice(device, callback = () => {}, fail = () => {}) {
|
|
// uni.offBluetoothDeviceFound();
|
|
// uni.offBluetoothDeviceFound();
|
|
// 停止蓝牙设备搜索
|
|
// 停止蓝牙设备搜索
|
|
uni.stopBluetoothDevicesDiscovery();
|
|
uni.stopBluetoothDevicesDiscovery();
|
|
- deviceId = data.deviceId;
|
|
|
|
|
|
+ const car_info= uni.getStorageSync('car_info')
|
|
|
|
+ const deviceIds = data.deviceId;
|
|
|
|
+ console.log(deviceIds,'deviceIds456');
|
|
|
|
+ const deviceId = car_info.car_sn;
|
|
const app = getApp();
|
|
const app = getApp();
|
|
// 检查全局状态中是否已经存在该设备
|
|
// 检查全局状态中是否已经存在该设备
|
|
if (app.globalData.connectionState[deviceId]) {
|
|
if (app.globalData.connectionState[deviceId]) {
|
|
@@ -305,7 +315,7 @@ function findDevice(device, callback = () => {}, fail = () => {}) {
|
|
app.globalData.connectionState[deviceId] = {
|
|
app.globalData.connectionState[deviceId] = {
|
|
device: device,
|
|
device: device,
|
|
deviceName:data.name,
|
|
deviceName:data.name,
|
|
- deviceId: deviceId,
|
|
|
|
|
|
+ deviceId: deviceIds,
|
|
connected: false,
|
|
connected: false,
|
|
data: {}
|
|
data: {}
|
|
};
|
|
};
|
|
@@ -360,10 +370,12 @@ function connectDevice(device, callback = () => {}, fail = () => {}) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- const device_name=app.globalData.connectionState[deviceId].deviceName
|
|
|
|
|
|
+ const deviceIds = app.globalData.connectionState[device.mac_id].deviceId
|
|
|
|
+ console.log(deviceIds,'deviceIds');
|
|
|
|
+ const device_name=app.globalData.connectionState[device.mac_id].deviceName
|
|
// 创建蓝牙连接
|
|
// 创建蓝牙连接
|
|
uni.createBLEConnection({
|
|
uni.createBLEConnection({
|
|
- deviceId: deviceId,
|
|
|
|
|
|
+ deviceId: deviceIds,
|
|
success: (res) => {
|
|
success: (res) => {
|
|
console.log(res,'蓝牙连接成功');
|
|
console.log(res,'蓝牙连接成功');
|
|
const app = getApp();
|
|
const app = getApp();
|
|
@@ -371,14 +383,14 @@ function connectDevice(device, callback = () => {}, fail = () => {}) {
|
|
app.globalData.connectionState[deviceId] = {
|
|
app.globalData.connectionState[deviceId] = {
|
|
device: device,
|
|
device: device,
|
|
deviceName: device_name,
|
|
deviceName: device_name,
|
|
- deviceId: deviceId,
|
|
|
|
|
|
+ deviceId: deviceIds,
|
|
connected: true,
|
|
connected: true,
|
|
data: {}
|
|
data: {}
|
|
};
|
|
};
|
|
// 调用连接成功回调
|
|
// 调用连接成功回调
|
|
alterConnect(
|
|
alterConnect(
|
|
device,
|
|
device,
|
|
- deviceId,
|
|
|
|
|
|
+ deviceIds,
|
|
(res) => {
|
|
(res) => {
|
|
console.log('uni.createBLEConnection');
|
|
console.log('uni.createBLEConnection');
|
|
callback(res);
|
|
callback(res);
|
|
@@ -466,7 +478,7 @@ function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
// 写入数据
|
|
// 写入数据
|
|
setTimeout(()=>{
|
|
setTimeout(()=>{
|
|
writeData(device, deviceId, data, callback, fail);
|
|
writeData(device, deviceId, data, callback, fail);
|
|
- },500)
|
|
|
|
|
|
+ },100)
|
|
|
|
|
|
} else {
|
|
} else {
|
|
// 调用回调函数
|
|
// 调用回调函数
|
|
@@ -525,14 +537,14 @@ function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
fail(res);
|
|
fail(res);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- },
|
|
|
|
|
|
+ },
|
|
fail(res) {
|
|
fail(res) {
|
|
console.log('getBLEDeviceServices fail',res);
|
|
console.log('getBLEDeviceServices fail',res);
|
|
// 调用失败回调函数
|
|
// 调用失败回调函数
|
|
fail(res);
|
|
fail(res);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- },800)
|
|
|
|
|
|
+ },500)
|
|
|
|
|
|
},
|
|
},
|
|
fail(res) {
|
|
fail(res) {
|
|
@@ -656,7 +668,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);
|
|
- }, 50);
|
|
|
|
|
|
+ }, 60);
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 失败回调函数
|
|
// 失败回调函数
|
|
@@ -1077,7 +1089,7 @@ function executeDeviceCommand(macid, commandName, callback = () => {}, fail = ()
|
|
if (data) {
|
|
if (data) {
|
|
setTimeout(()=>{
|
|
setTimeout(()=>{
|
|
writeData(device, deviceId, data, callback, fail);
|
|
writeData(device, deviceId, data, callback, fail);
|
|
- },200)
|
|
|
|
|
|
+ },100)
|
|
return true;
|
|
return true;
|
|
}
|
|
}
|
|
fail();
|
|
fail();
|