12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- const common = require('../common.js');
- // <<BMS_AD1通信协议_V1.1_0819.docx>>
- 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;
- function acceptDevice(device) {
- return device.btid ? true : false;
- }
- function isSingleBt() {
- return true;
- }
- function isDevice(device, data) {
- console.log(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 sendCommand(cmd, data = []) {
- data = [cmd, data.length].concat(data);
- return common.completArrayCRC(data, data.length);
- }
- // 鉴权
- function alterConnect(device, deviceId) {
- return [sendCommand(1, [171, 205, 171, 205])];
- }
- function readData(device, value, data) {
- var value = new Uint8Array(value);
- console.log(value);
- switch (value[0]) {
- case 68:
- data.voltage = (((value[2] << 8) | value[3]) / 100).toFixed(2);
- break;
- case 66:
- //data = FMBMS.BMSReply(value.slice(2, 2 + value[1]), data)
- break;
- }
- return data;
- }
- function stateUpdate(device, deviceId) {
- console.log('读电压');
- return [sendCommand(4)];
- }
- function turnOn(device, deviceId) {
- console.log('通电');
- return [sendCommand(3, [170])];
- }
- function turnOff(device, deviceId) {
- console.log('断电');
- return [sendCommand(3, [187])];
- }
- 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,
- isSingleBt: isSingleBt
- };
|