|
@@ -222,7 +222,7 @@ async function readBinBinarayToCommand() {
|
|
|
}
|
|
|
|
|
|
function sendNextCommand(mac_id) {
|
|
|
- console.log('开始发送指令');
|
|
|
+ console.log(currentCommandIndex,commands.length,'开始发送指令');
|
|
|
// console.log(commands[currentCommandIndex],'command');
|
|
|
if (currentCommandIndex >= commands.length) {
|
|
|
uni.hideLoading();
|
|
@@ -258,7 +258,7 @@ function sendNextCommand(mac_id) {
|
|
|
}
|
|
|
|
|
|
function splitArrayIntoChunks(array, chunkSize) {
|
|
|
- const newArr=array.slice(16384)
|
|
|
+ const newArr=array.slice(16383)
|
|
|
const numChunks = Math.ceil(newArr.length / chunkSize);
|
|
|
|
|
|
return Array.from({ length: numChunks }, (_, i) => {
|