liuwei 2 долоо хоног өмнө
parent
commit
0515afc509

+ 9 - 0
common/bluetooth.js

@@ -958,6 +958,7 @@ function sendOTACommand(macid, callback = () => {}, fail = () => {}) {
     if (data) {
 		
 		data.then(result => {
+			console.log(result[0],'result');
 			    writeData(device, deviceId, [result[0]], callback, fail);
 				// const testData=result.slice(0,3)
 				// const testData=result
@@ -998,6 +999,12 @@ function executeDeviceCommand(macid, commandName, callback = () => {}, fail = ()
 function turnOnCar(macid, callback = () => {}, fail = () => {}) {
     return executeDeviceCommand(macid, 'turnOnCar', callback, fail);
 }
+function turnOffCar(macid, callback = () => {}, fail = () => {}) {
+    return executeDeviceCommand(macid, 'turnOffCar', callback, fail);
+}
+function findCarCmd(macid, callback = () => {}, fail = () => {}) {
+    return executeDeviceCommand(macid, 'findCarCmd', callback, fail);
+}
 
 module.exports = {
     initBluetooth: initBluetooth,
@@ -1049,6 +1056,8 @@ module.exports = {
     // 执行设备命令
     executeDeviceCommand,
     turnOnCar,
+    turnOffCar,
+	findCarCmd,
 	
 	
 };

+ 7 - 7
common/bluetooth/ZXCar.js

@@ -224,7 +224,7 @@ function sendNextCommand(mac_id) {
         return ;
     }
     const command = [commands[currentCommandIndex]];
-	
+	console.log(command,'commandtest');
 	if(command.length==0){
 		return
 	}
@@ -281,15 +281,15 @@ function makeArr(array) {
 		 //软件数据包
 		const formattedChunk = array[i].map(byte => `0x${byte.toString(16).toUpperCase()}`); // 转换为 0xXX 格式 
 		startArray.push(...formattedChunk)
-		if(i>95&& i<105){
-			console.log(startArray,'startArray-------');
-		}
+		// if(i>95&& i<105){
+		// 	console.log(startArray,'startArray-------');
+		// }
 		//crc检验
 		const crcStr='0x'+crc8IEEE8023(startArray).toString(16).toUpperCase()
 		const testCrc=parseInt(crcStr,16)
-		if(i>95&& i<105){
-			console.log(testCrc,crcStr,'startArray*******');
-		}
+		// if(i>95&& i<105){
+		// 	console.log(testCrc,crcStr,'startArray*******');
+		// }
 		startArray.push(crcStr)
 		startArray.push(0xAA,0xAA)
 		startArray.unshift(0x22,0x22,0x30)

+ 1 - 3
manifest.json

@@ -129,9 +129,7 @@
     },
     "quickapp" : {},
     "mp-weixin" : {
-        // "appid" : "wx868f4e5130ef2636", //小众出行
-        "appid" : "wxefa2810018787a41", //智寻小租
-
+        "appid" : "wxefa2810018787a41",
         // "appid": "wxfa47ec20c664ad3e", //可人智行
         // "appid" : "wx56681a7f2fe324ed",//名师傅出行
         "setting" : {

+ 21 - 21
pages/bluetoothUnlock/bluetoothPair.vue

@@ -214,28 +214,28 @@
 							
 							},
 							(res) => {
-								// console.log('观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限');
+								console.log('观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限',res,res.errCode);
 								uni.hideLoading();
-								var showContent = ""
-								if (res && ("errCode" in res)) {
-									if (res.errCode == 9000001) {
-										var showContent = "观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限!!"
-									} else {
-										var showContent = "连接失败,请尝试重新连接44444"
-									}
-								} else {
-									var showContent = "连接失败,请尝试重新连接55555"
-								}
-								uni.showModal({
-									title: '提示',
-									confirmText: '重新连接',
-									content: showContent,
-									success: function(res) {
-										if (res.confirm) {
-											me.loadBluetooth();
-										} else {}
-									}
-								});
+								// var showContent = ""
+								// if (res && ("errCode" in res)) {
+								// 	if (res.errCode == 9000001) {
+								// 		var showContent = "观察周围是否有其他骑手连接,请等待对方完成 或 微信是否开启了蓝牙权限!!"
+								// 	} else {
+								// 		var showContent = "连接失败,请尝试重新连接44444"+res.errCode
+								// 	}
+								// } else {
+								// 	var showContent = "连接失败,请尝试重新连接55555"
+								// }
+								// uni.showModal({
+								// 	title: '提示',
+								// 	confirmText: '重新连接',
+								// 	content: showContent,
+								// 	success: function(res) {
+								// 		if (res.confirm) {
+								// 			me.loadBluetooth();
+								// 		} else {}
+								// 	}
+								// });
 							}, 
 							(res) => {
 								// console.log('蓝牙未打开或请在右上角设置授权小程序使用蓝牙66666');