添加102

This commit is contained in:
liub
2025-11-14 17:28:20 +08:00
parent c8f5567285
commit cb9ed0b1da
19 changed files with 3786 additions and 76 deletions

110
api/4877/BJQ4877.js Normal file
View File

@ -0,0 +1,110 @@
export const colors=[
{
r: 255,
g: 0,
b: 0,
name: '红色',
hex: '#FF0000',
check: false,
id: 1
},
{
r: 0,
g: 0,
b: 255,
name: '蓝色',
hex: '#0000FF',
check: false,
id: 2
},
{
r: 0,
g: 255,
b: 0,
name: '绿色',
hex: '#00FF00',
check: false,
id: 3
},
{
r: 255,
g: 255,
b: 0,
name: '黄色',
hex: '#FFFF00',
check: false,
id: 4
},
{
r: 0,
g: 255,
b: 255,
name: '青色',
hex: '#00FFFF',
check: false,
id: 5
},
{
r: 255,
g: 0,
b: 255,
name: '紫红色',
hex: '#FF00FF',
check: false,
id: 6
},
{
r: 51,
g: 255,
b: 153,
name: '薄荷绿',
hex: '#33FF99',
check: false,
id: 7
},
{
r: 255,
g: 102,
b: 102,
name: '珊瑚红',
hex: '#FF6666',
check: false,
id: 8
},
{
r: 153,
g: 255,
b: 0,
name: '柠绿',
hex: '#99FF00',
check: false,
id: 9
},
{
r: 128,
g: 0,
b: 128,
name: '紫色',
hex: '#800080',
check: false,
id: 10
},
{
r: 204,
g: 102,
b: 255,
name: '淡紫',
hex: '#CC66FF',
check: false,
id: 11
},
{
r: 102,
g: 204,
b: 255,
name: '浅蓝',
hex: '#66CCFF',
check: false,
id: 12
}
]

View File

@ -23,7 +23,8 @@
"Camera" : {},
"Geolocation" : {},
"Maps" : {},
"Record" : {}
"Record" : {},
"VideoPlayer" : {}
},
/* */
"distribute" : {

View File

@ -347,6 +347,13 @@
{
"navigationBarTitleText" : "选择配组"
}
},
{
"path" : "pages/102/HBY102",
"style" :
{
"navigationBarTitleText" : "HBY102"
}
}

View File

@ -1118,7 +1118,7 @@
let json = recei.ReceiveData(receive, device, pagePath, recArr);
// console.log("收到设备的数据", json)
console.log("收到设备的数据", json)
let key = 'sta_VoiceDate';
if (key in json) {
@ -1126,6 +1126,7 @@
console.log("22222", val)
if (val === 'start') {
//开始发包
console.log("开始发送数据");
updateLoading(these, {
text: "开始发送"
});

1694
pages/102/HBY102.vue Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,310 @@
<template>
<view class="contentBg mainContent">
<view class="colorContent">
<view v-for="item,index in colors" class="item" :class="{active:item.check,marginNoLeft:index%3===0}"
@click.stop="CheckGroup(item,index)">
<view class="polygon" :style="{backgroundColor:item.hex}">
</view>
<view class="text">{{item.name}}</view>
</view>
</view>
<view class="footer">
<view class="btnSave" @click.stop="CheckOver()">确定</view>
</view>
<MessagePopup :visible="Status.Pop.showPop" :type="Status.Pop.popType" :bgColor="Status.Pop.bgColor"
:borderColor="Status.Pop.borderColor" :textColor="Status.Pop.textColor"
:buttonBgColor="Status.Pop.buttonBgColor" :buttonTextColor="Status.Pop.buttonTextColor"
:iconUrl="Status.Pop.iconUrl" :message="Status.Pop.message" :buttonText="Status.Pop.buttonText"
@buttonClick="HidePop" :visiblePrompt="Status.Pop.visiblePrompt" :promptTitle="Status.Pop.promptTitle"
v-model="Status.Pop.modelValue" @closePop="closePop" :buttonCancelText="Status.Pop.buttonCancelText"
:showCancel="Status.Pop.showCancel" @cancelPop="closePop" />
</view>
</template>
<script>
import {
colors
} from '@/api/4877/BJQ4877.js';
var eventChannel = null;
var these=null;
export default {
data() {
return {
Status: {
Pop: {
showPop: false, //是否显示弹窗
popType: 'custom',
bgColor: '#383934bd',
borderColor: '#BBE600',
textColor: '#ffffffde',
buttonBgColor: '#BBE600',
buttonTextColor: '#232323DE',
iconUrl: '',
message: '您确定要这样做吗?',
buttonText: '确定',
clickEvt: '',
visiblePrompt: false,
promptTitle: '设备名称',
modelValue: '',
visibleClose: false,
okCallback: null,
buttonCancelText: '',
showCancel: false,
}
},
colors: [
],
device:{
}
}
},
onLoad() {
these=this;
this.colors = Object.assign([], colors);
eventChannel = this.getOpenerEventChannel();
eventChannel.on('CheckGroup', function(data) {
debugger;
if (data && data.id) {
these.device=data;
uni.getStorage({
key: "4877CheckColor_" + data.id,
success: (res) => {
if (res.data) {
debugger;
for (var index = 0; index < these.colors.length; index++) {
let f=res.data.find(v=>{
return v===these.colors[index].id;
});
if(f){
these.$set(these.colors[index], 'check',true);
}else{
these.$set(these.colors[index], 'check',false);
}
}
}
}
})
}
});
},
methods: {
CheckOver() {
let arr = this.colors.map(v => {
return v.check ? 1 : 0;
})
if (!arr.length) {
this.showMsg("请选择至少1个颜色配组");
return;
}
let checks = this.colors.filter(v => {
return v.check
}).map(item => {
return item.id
});
console.log("checks=", checks);
eventChannel.emit('CheckGroupOver', {allFlag:arr,checkIds:checks});
uni.setStorage({
key: "4877CheckColor_" + this.device.id,
data: checks
});
uni.navigateBack();
},
CheckGroup(item, index) {
this.$set(this.colors[index], 'check', !item.check)
},
closePop: function() {
this.Status.Pop.showPop = false;
if (this.Status.Pop.cancelCallback) {
this.Status.Pop.cancelCallback();
}
},
HidePop: function() {
if (this.Status.Pop.clickEvt == 'SendUsr') {
}
this.Status.Pop.showPop = false;
if (this.Status.Pop.okCallback) {
this.Status.Pop.okCallback();
}
},
showPop: function(option) {
hideLoading(this);
let def = {
showPop: true, //是否显示弹窗
popType: 'custom',
bgColor: '#383934bd',
borderColor: '#BBE600',
textColor: '#ffffffde',
buttonBgColor: '#BBE600',
buttonTextColor: '#232323DE',
iconUrl: '',
message: '',
buttonText: '确定',
clickEvt: '',
visiblePrompt: false,
promptTitle: '',
modelValue: '',
visibleClose: false,
okCallback: null,
showSlot: false,
buttonCancelText: '',
showCancel: false,
}
let keys = Object.keys(def);
for (let i = 0; i < keys.length; i++) {
let key = keys[i];
if (key in option) {
continue;
}
this.Status.Pop[key] = def[key];
}
if (option) {
keys = Object.keys(option);
for (let i = 0; i < keys.length; i++) {
let key = keys[i];
this.Status.Pop[key] = option[key];
}
}
if (!option.borderColor) {
option.borderColor = '#BBE600';
option.buttonBgColor = '#BBE600';
}
these.Status.Pop.showPop = true;
},
showMsg(msg, isSucc) {
let icoUrl = '/static/images/6155/DeviceDetail/uploadErr.png';
let borderColor = "#e034344d";
let buttonBgColor = "#E03434";
if (isSucc) {
icoUrl = '/static/images/common/success.png';
borderColor = "#BBE600";
buttonBgColor = "#BBE600";
}
this.showPop({
message: msg,
iconUrl: icoUrl,
borderColor: borderColor,
buttonBgColor: buttonBgColor,
buttonText: '确定',
okCallback: null
});
}
}
}
</script>
<style>
.mainContent {
width: 100%;
min-height: 100vh;
box-sizing: border-box;
padding: 30rpx
}
.colorContent {
display: flex;
align-content: center;
justify-content: flex-start;
justify-items: center;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
width: 100%;
box-sizing: border-box;
}
.polygon {
/* 矩形 235 */
width: 30rpx;
height: 30rpx;
border-radius: 8rpx;
}
.text {
color: rgba(255, 255, 255, 0.87);
font-family: PingFang SC;
font-size: 28rpx;
font-weight: 400;
letter-spacing: 2rpx;
margin-left: 15rpx;
}
.item {
background-color: #1A1A1A;
margin-left: 36rpx;
width: calc(calc(100% - 72rpx) / 3);
height: 90rpx;
margin-top: 24rpx;
box-sizing: border-box;
padding-left: 25rpx;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: center;
align-content: center;
border-width: 1rpx;
border-style: solid;
border-color: #00000000;
border-radius: 8rpx;
}
.item.active {
border-color: #AED600 !important;
}
.marginNoLeft {
margin-left: 0rpx !important;
}
.footer {
position: fixed;
bottom: 75px;
left: 00rpx;
width: 100%;
height: 100rpx;
box-sizing: border-box;
padding: 0rpx 120rpx;
}
.btnSave {
background-color: #BBE600;
color: #232323DE;
text-align: center;
border-radius: 60rpx;
width: 100%;
height: 100rpx;
font-family: PingFang SC;
font-size: 32rpx;
font-weight: 400;
line-height: 100rpx;
letter-spacing: 12rpx;
}
</style>

1596
pages/4877/BJQ4877V1.vue Normal file

File diff suppressed because it is too large Load Diff

View File

@ -617,25 +617,26 @@
var processAndSendImageData = function(pixels) {
return new Promise((resolve, reject) => {
// 创建RGB565格式的像素数据
// console.log("pixels=",pixels);
const arr = ble.convertToRGB565(pixels, 'bgr');
var list = [];
let index = 0; // 用于追踪arr的当前位置
let packetSize = 2048;
let cSize = 248;
let packetSize = 3200;
let cSize = 200;
// 外层循环7个主要元素i从1到7
for (let i = 1; i < 8; i++) {
for (let i = 1; i < 9; i++) {
let secondLevel = [];
let secondCnt = 0;
// 中层循环每个主要元素包含9个子数组j从1到9
for (let j = 1; j < 10; j++) {
for (let j = 1; j < 9; j++) {
// 确定当前子数组的长度前8个是254第9个是64
let thirdLevel = [];
// 从arr中提取相应数量的元素
for (let k = 0; k < cSize && index < arr.length; k++) {
if (secondCnt == packetSize) {
break;
}
@ -643,14 +644,14 @@
secondCnt++;
index++;
}
secondLevel.push(thirdLevel);
}
list.push(secondLevel);
}
console.log("list=", list);
let length = 0;
for (let i = 0; i < list.length; i++) {
const item = list[i];
@ -660,8 +661,8 @@
console.log("第" + i + "包,第" + j + "小包,长度:" + element.length)
length += element.length;
clength += element.length;
}
}
// 分包发送
@ -675,118 +676,102 @@
var sendImagePackets = function(imageData) {
return new Promise((resolve, reject) => {
// 总数据包数
const totalPackets = 7;
const totalPackets = 8;
let currentPacket = 1;
let childPacket = 1;
let totalChildPacket = 9;
let totalChildPacket = 8;
// 发送单个数据包
const sendNextPacket = () => {
if (currentPacket > totalPackets) {
updateLoading(these,{text:'发送完成,等待设备30秒'});
setTimeout(() => {
hideLoading(these);
these.Status.BottomMenu.show = false;
these.showPop({
message: "上传成功",
iconUrl: "/static/images/6155/DeviceDetail/uploadSuccess.png",
borderColor: '#BBE600',
buttonBgColor: '#BBE600'
});
resolve();
}, 20000)
}, 0)
return;
}
var packetData = imageData[currentPacket - 1][childPacket - 1];
// if (packetData.length == 0) {
// hideLoading(these);
// these.Status.BottomMenu.show = false;
// these.showPop({
// message: "上传成功",
// iconUrl: "/static/images/6155/DeviceDetail/uploadSuccess.png"
// });
// resolve();
// return;
// }
console.log("childPacket=", childPacket);
console.log("packetData=", packetData);
let start = 0;
let bufferSize = packetData.length * 2;
if (currentPacket == 7) {
if (childPacket > 2 && childPacket < 9) {
bufferSize = 496;
} else if (childPacket == 9) {
bufferSize = 128;
}
}
if (childPacket == 1) {
bufferSize = bufferSize + 8
start = 8;
}
if (childPacket == 9) { //|| (currentPacket==7 && childPacket==3
if (childPacket == 8) { //|| (currentPacket==7 && childPacket==3
bufferSize = bufferSize + 1
}
//FA 09 10 04 FC 09 [00] [01] + 4096字节+FF 数据格式
//FA 09 0C 84 FB 09 00 [01~08] + 3200字节 +FF 数据格式
var buffer = new ArrayBuffer(bufferSize);
var dataView = new DataView(buffer);
if (childPacket == 1) {
dataView.setUint8(0, 0xFA); // 帧头
dataView.setUint8(1, 0x09); // 帧头
dataView.setUint8(2, 0x10); // 帧头
dataView.setUint8(3, 0x04); // 帧头
dataView.setUint8(4, 0xFC); // 帧头
dataView.setUint8(5, 0x09); // 帧头
dataView.setUint8(6, 0x00); // 图序号,图片固定0视频的话要写序号
dataView.setUint8(7, currentPacket); //子包序号
dataView.setUint8(2, 0x0C); // 帧头
dataView.setUint8(3, 0x84); // 帧头
dataView.setUint8(4, 0xFB); // 帧头
dataView.setUint8(5, 0x09);
dataView.setUint8(6, 0x00); // 帧头
dataView.setUint8(7, currentPacket); //包序号
}
for (let i = 0; i < packetData.length; i++) {
dataView.setUint16(start + i * 2, packetData[i], false); //本包数据,大端字节序
}
console.log("packetData.length=", packetData.length);
console.log("bufferSize=", bufferSize)
if (childPacket == 9) { // || (currentPacket==7 && childPacket==3
if (childPacket == 8) { // || (currentPacket==7 && childPacket==3
dataView.setUint8(bufferSize - 1, 0xFF);
}
//发送数据包
ble.sendData(f.deviceId, buffer, f.writeServiceId, f.wirteCharactId,
30)
.then(() => {
let curr = childPacket + (currentPacket - 1) *
totalChildPacket;
console.log("第" + currentPacket + "大包,第" + childPacket +
"小包发送完成,总计:" + curr);
updateLoading(these, {
text: "正在发送" + curr + "/63"
text: "正在发送" + curr + "/64"
})
if (childPacket == 9) {
if (childPacket == 8) {
currentPacket++;
childPacket = 1;
} else {
childPacket++;
}
setTimeout(sendNextPacket, 100);
}).catch(err => {
if (err.code == 10007) {
setTimeout(sendNextPacket, 100);
return;
}
console.log("发送数据包失败了", err);
these.Status.BottomMenu.show = false;
these.showPop({
message: "发送数据包失败了" + err.msg,
@ -794,14 +779,14 @@
borderColor: "#e034344d",
buttonBgColor: "#E03434",
});
hideLoading(these);
reject(err);
});
}
// 开始发送数据
sendNextPacket();
});
}

View File

@ -386,11 +386,11 @@
Promise.allSettled(promis).finally(() => {
ble.StopSearch().finally(res => {
// console.log("停止搜索成功");
console.log("停止搜索成功");
these.EquipMents = [];
these.PairEquip = [];
ble.StartSearch().then(result => {
// console.log("开始搜索成功");
console.log("开始搜索成功");
}).catch(err => {
console.error("开始搜索失败,err=", err);
if (err.code === 10001) {

BIN
static/images/102/line.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
static/images/102/redar.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -510,7 +510,7 @@ class BleHelper {
}
uni.onBluetoothAdapterStateChange((state) => {
// console.log('蓝牙状态发生变化:' + JSON.stringify(state));
console.log('蓝牙状态发生变化:' + JSON.stringify(state));
this.data.discovering = state.discovering;
if (this.data.available !== state.available) {
@ -632,18 +632,23 @@ class BleHelper {
}, 0);
});
console.log("111111111")
uni.onBluetoothDeviceFound((res) => {
// console.log("发现新设备:" + JSON.stringify(devices));
// console.log("发现新设备:" + JSON.stringify(res,'name'));
let arr = [];
for (var i = 0; i < res.devices.length; i++) {
let item = res.devices[i];
if(item.name){
console.log("发现新设备",item.name+" "+item.RSSI);
}
let f = serviceDic.find(v => {
return item.advertisServiceUUIDs
.includes(v.serviceId);
});
if (f) {
console.log("发现设备:", item);
console.log("发现目标设备:", item);
arr.push(item);
}
@ -788,7 +793,7 @@ class BleHelper {
if (isUpdate) {
this.updateCache();
}
// console.log("str1=", str);
console.log("str1=", str);
} catch (ex) {
console.error("将数据转文本失败", ex);
}
@ -927,7 +932,7 @@ class BleHelper {
services: serviceId ? [serviceId] : [],
allowDuplicatesKey: true,
success: (res) => {
//console.log('开始搜索蓝牙设备成功');
console.log('开始搜索蓝牙设备成功');
resolve(res);
},
@ -1888,6 +1893,7 @@ class BleHelper {
}
}
let instance = null;

View File

@ -536,7 +536,7 @@ class BleReceive {
try {
// console.log("str=",receive.str);
console.log("str=",receive.str);
receiveData = JSON.parse(receive.str);
let recCnt = recArr.find(v => {