123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- const common = require('../common.js');
- const FMBMS = require('./FMBMS.js');
- const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
- const readID = '000036F6-0000-1000-8000-00805F9B34FB';
- const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
- const writeID = '000036F5-0000-1000-8000-00805F9B34FB';
- const MTU = 115;
- const app = getApp();
- function acceptDevice(device) {
- return device.btid ? true : false;
- }
- function isSingleBt() {
- console.log('是单蓝牙');
- return true;
- }
- function haveBms() {
- console.log('是单蓝牙并且带bms');
- return true;
- }
- function isDevice(device, data) {
- const advertisData = new Uint8Array(data.advertisData);
- const mac = device.btid
- .split('')
- .map((p, i) => parseInt(p + device.btid[i + 1], 16))
- .filter((p, i) => i % 2 == 0);
- if (advertisData.slice(0, 4).toString() == [9, 255, 1, 2].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
- return true;
- }
- return false;
- }
- // function alterConnect(device, deviceId) {
- // return [sendCommand(0x01, [0xAB, 0xCD, 0xAB, 0xCD])]
- // }
- function readData(device, value, data) {
- var value = new Uint8Array(value);
- switch (value[0]) {
- case 68:
- //data.quantity = value[2]
- break;
- case 66:
- //data = FMBMS.BMSReply(value.slice(2, 2 + value[1]), data)
- packBmsData(device, value, data);
- break;
- }
- return data;
- }
- function packBmsData(device, value, data) {
- console.log('组包 ...');
- let macid = device.mac_id;
- let total_len = (value[1] << 8) | value[2];
- if (total_len < 50) {
- console.log('部分数据回应,丢弃');
- realWriteData(device, [[162, 0, 162]]);
- return false;
- }
- let bms_data = value.slice(5, -1);
- if (app.globalData.deviceBTBMSBuf[macid]) {
- // 已经有bms数据
- if (bms_data[0] == 78 && bms_data[1] == 87) {
- // 此时收到的头部为bms头,丢弃
- // 丢弃
- console.log('之前的数据:');
- console.log(app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
- console.log('覆盖之前的数据');
- app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
- console.log('新的数据:');
- console.log(app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
- //realWriteData(device, [[0xa2, 0x00, 0xa2]])
- //realWriteData(device, [[0xa2, 0x01, 0xa2]])
- //return false
- } else {
- app.globalData.deviceBTBMSBuf[macid].bms_origin_data = mergeUint8Array(app.globalData.deviceBTBMSBuf[macid].bms_origin_data, bms_data);
- }
- } else {
- // 没有收到过bms
- if (bms_data[0] != 78 || bms_data[1] != 87) {
- // 不是bms头部标识
- // 丢弃
- console.log('丢弃包');
- app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
- realWriteData(device, [[162, 0, 162]]);
- //realWriteData(device, [[0xa2, 0x01, 0xa2]])
- return false;
- }
- app.globalData.deviceBTBMSBuf[macid] = {
- bms_origin_data: bms_data
- };
- }
- console.log('BMS 数据');
- console.log(app.globalData.deviceBTBMSBuf[macid].bms_origin_data);
- realWriteData(device, [[162, 0, 162]]);
- if (total_len == app.globalData.deviceBTBMSBuf[macid].bms_origin_data.length) {
- console.log('收到一个完整包');
- let bmsOriginData = app.globalData.deviceBTBMSBuf[macid].bms_origin_data;
- app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
- console.log(bmsOriginData);
- FMBMS.BMSReply(bmsOriginData, data);
- return true;
- }
- return false;
- }
- function mergeUint8Array(arr1, arr2) {
- let len1 = arr1 ? arr1.length : 0;
- let len2 = arr2.length;
- let arr = new Uint8Array(len1 + len2);
- for (let i = 0; i < len1; i++) {
- arr[i] = arr1[i];
- }
- for (let i = 0; i < len2; i++) {
- arr[len1 + i] = arr2[i];
- }
- return arr;
- }
- function getDeviceIdByMacid(macid) {
- let deviceid = '';
- for (let i = 0; i < macid.length; i++) {
- if (i != 0 && i % 2 == 0) {
- deviceid += ':';
- }
- deviceid += macid[i];
- }
- return deviceid;
- }
- function realWriteData(device, data, callback = () => {}, fail = () => {}) {
- if (data.length == 0) {
- return;
- }
- let deviceId = getDeviceIdByMacid(device.mac_id);
- const buffer = common.toArrayBuffer(data.shift());
- console.log(buffer);
- uni.writeBLECharacteristicValue({
- deviceId: deviceId,
- serviceId: writeServiceID,
- characteristicId: writeID,
- value: buffer,
- success(res) {
- console.log('分包回复成功');
- console.log(res);
- if (data.length == 0) {
- callback(res);
- } else {
- setTimeout(() => {
- writeData(device, deviceId, data, callback, fail);
- }, 500);
- }
- },
- fail(res) {
- console.log('分包回复失败');
- console.log(res);
- fail(res);
- }
- });
- }
- function sendCommand(cmd, data = []) {
- //data = [cmd, data.length].concat(data)
- if (cmd == 2) {
- data = [cmd, (data.length & 65280) >> 8, data.length & 255, data.length, 0].concat(data);
- } else {
- data = [cmd, data.length].concat(data);
- }
- return common.completArrayCRC(data, data.length);
- }
- function stateUpdate(device, deviceId) {
- return [sendCommand(4), sendCommand(2, FMBMS.BMSRead())];
- //return [[0x02,0x00,0x15,0x15,0x00,0x4e,0x57,0x00,0x13,0x00,0x00,0x00,0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x68,0x00,0x00,0x01,0x27,0x7b]]
- }
- function turnOn(device, deviceId) {
- return [sendCommand(2, FMBMS.BMSTurnOn())];
- }
- function turnOff(device, deviceId) {
- return [sendCommand(2, FMBMS.BMSTurnOff())];
- }
- function bmsChargingMOS(value) {
- return [sendCommand(2, FMBMS.bmsChargingMOS(value))];
- }
- function bmsDischargeMOS(value) {
- return [sendCommand(2, FMBMS.bmsDischargeMOS(value))];
- }
- function bmsInfo(device, deviceId, info) {
- let power = info.voltage * info.current * 0.001;
- if (power < 0) {
- power = power * -1;
- }
- return {
- state: {
- voltage: info.voltageList ? info.voltageList : [],
- temp: info.temp ? [info.temp] : [],
- voltageAll: info.voltage ? info.voltage : 0,
- current: info.current ? info.current : 0,
- soc: info.soc ? info.soc : 0,
- maxVoltage: info.maxVoltage,
- minVoltage: info.minVoltage,
- maxTemp: info.temp,
- minTemp: info.temp,
- chargeState: info.chargeState,
- socAH: info.soc * 0.01 * info.capacity,
- count: info.count,
- tempCount: info.tempCount,
- cycle: info.cycle,
- equilibrium: info.equilibrium,
- chargingMOS: info.chargeProtectState,
- dischargeMOS: info.dischargeProtectState,
- averageVoltage: info.sumVoltage / info.count,
- voltagDifference: info.maxVoltage - info.minVoltage,
- power: power,
- capacity: info.capacity,
- firmware: info.firmware,
- dischargeMOSOnOff: info.dischargeProtectState,
- chargingMOSOnOff: info.chargeProtectState
- },
- btsets: [
- {
- class: '高低温保护阀值',
- name: 'AU10',
- vars: [
- {
- label: '低温保护阀值',
- name: 'AU100',
- type: 'number',
- value: ''
- },
- {
- label: '高温保护阀值',
- name: 'AU101',
- type: 'number',
- value: ''
- }
- ]
- },
- {
- class: '充放电保护电压',
- name: 'AU12',
- vars: [
- {
- label: '充电保护电压',
- name: 'AU120',
- type: 'number',
- value: ''
- },
- {
- label: '放电保护电压',
- name: 'AU121',
- type: 'number',
- value: ''
- }
- ]
- },
- {
- class: '充放电保护开关',
- name: 'AU13',
- vars: [
- {
- label: '充电保护',
- name: 'AU130',
- type: 'radio',
- option: [
- {
- label: '关闭',
- value: '0'
- },
- {
- label: '开启',
- value: '1'
- }
- ],
- value: ''
- },
- {
- label: '放电保护',
- name: 'AU131',
- type: 'radio',
- option: [
- {
- label: '关闭',
- value: '0'
- },
- {
- label: '开启',
- value: '1'
- }
- ],
- value: ''
- }
- ]
- },
- {
- class: '充放电保护恢复电压',
- name: 'AU14',
- vars: [
- {
- label: '充电保护恢复电压',
- name: 'AU140',
- type: 'number',
- value: ''
- },
- {
- label: '放电保护恢复电压',
- name: 'AU141',
- type: 'number',
- value: ''
- }
- ]
- },
- {
- class: '高低温保护恢复值',
- name: 'AU15',
- vars: [
- {
- label: '低温保护恢复值',
- name: 'AU150',
- type: 'number',
- value: ''
- },
- {
- label: '高温保护恢复值',
- name: 'AU151',
- type: 'number',
- value: ''
- }
- ]
- },
- {
- class: '电池循环次数',
- name: 'AU16',
- vars: [
- {
- label: '循环次数',
- name: 'AU160',
- type: 'number',
- value: ''
- }
- ]
- },
- {
- class: 'BMS自动保护开关',
- name: 'AU17',
- vars: [
- {
- label: '自动保护',
- name: 'AU170',
- type: 'radio',
- option: [
- {
- label: '关闭',
- value: '0'
- },
- {
- label: '开启',
- value: '1'
- }
- ],
- value: ''
- }
- ]
- }
- ]
- };
- }
- function bmsSet(device) {
- return false;
- }
- module.exports = {
- readServiceID: readServiceID,
- readID: readID,
- writeServiceID: writeServiceID,
- writeID: writeID,
- MTU: MTU,
- acceptDevice: acceptDevice,
- isDevice: isDevice,
- // alterConnect: alterConnect,
- readData: readData,
- stateUpdate: stateUpdate,
- turnOn: turnOn,
- turnOff: turnOff,
- bmsInfo: bmsInfo,
- bmsSet: bmsSet,
- isSingleBt: isSingleBt,
- haveBms: haveBms,
- bmsChargingMOS: bmsChargingMOS,
- bmsDischargeMOS: bmsDischargeMOS
- };
|