LSCabinet.js 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. const common = require('../common.js');
  2. const parse = require('./blueParse/LSCabinet/LSCabinet.js');
  3. const tool = require('./blueParse/LSCabinet/LSCabinetTool.js');
  4. const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  5. const readID = '000036F6-0000-1000-8000-00805F9B34FB';
  6. const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  7. const writeID = '000036F5-0000-1000-8000-00805F9B34FB';
  8. const app = getApp();
  9. const MTU = 115;
  10. var isStart = 0; //0 未开始 1 已开始 2进行中 3已完成
  11. var timeOut = 0; //超时次数
  12. var deviceData = {};
  13. function acceptDevice(device) {
  14. return device.btid ? true : false;
  15. }
  16. function isSingleBt() {
  17. return true;
  18. }
  19. function isDevice(device, data) {
  20. const advertisData = new Uint8Array(data.advertisData);
  21. const mac = device.btid
  22. .split('')
  23. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  24. .filter((p, i) => i % 2 == 0);
  25. if (advertisData.slice(0, 4).toString() == [0x09, 0xff, 0x01, 0x02].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
  26. return true;
  27. }
  28. return false;
  29. }
  30. function sendCommand(cmd, data = []) {
  31. data = [cmd, data.length].concat(data);
  32. return common.completArrayCRC(data, data.length);
  33. } //换电指令
  34. function sendExchangeCommand(data) {
  35. deviceData = data;
  36. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  37. bms_origin_data: null
  38. };
  39. var body = tool.togetherCommand([0x01, 0x01], data);
  40. common.reportLog(2, deviceData.dev_id, '下发换电指令:' + Uint8ArrayToString(body));
  41. return [body];
  42. } //租电指令
  43. function sendHireCommand(data) {
  44. deviceData = data;
  45. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  46. bms_origin_data: null
  47. };
  48. var body = tool.togetherCommand([0x02, 0x01], data);
  49. common.reportLog(2, deviceData.dev_id, '下发租电指令:' + Uint8ArrayToString(body));
  50. return [body];
  51. } //还电指令
  52. function sendBackCommand(data) {
  53. deviceData = data;
  54. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  55. bms_origin_data: null
  56. };
  57. var body = tool.togetherCommand([0x03, 0x01], data);
  58. common.reportLog(2, deviceData.dev_id, '下发还电指令:' + Uint8ArrayToString(body));
  59. return [body];
  60. } //确认指令 (序列号,密钥,消息头)
  61. function sendConfirmCommand(value, serialNum) {
  62. app.globalData.deviceBTBMSBuf[deviceData.mac_id] = {
  63. bms_origin_data: null
  64. };
  65. var body = tool.confirmCommand(value, serialNum, deviceData.key);
  66. common.reportLog(2, deviceData.dev_id, '下发确认指令:' + Uint8ArrayToString(body));
  67. return [body];
  68. } //取消确认指令
  69. function sendCancelCommand(serialNum) {
  70. app.globalData.deviceBTBMSBuf[deviceData.mac_id] = {
  71. bms_origin_data: null
  72. };
  73. var body = tool.confirmCommand([0x04, 0x01], serialNum, deviceData.key);
  74. common.reportLog(2, deviceData.dev_id, '下发取消指令:' + Uint8ArrayToString(body));
  75. return [body];
  76. } //获取柜体信息
  77. function sendGetCabinetInfoCommand(data) {
  78. isStart = 1;
  79. deviceData = data;
  80. app.globalData.deviceBTBMSBuf[data.mac_id] = {
  81. bms_origin_data: null
  82. };
  83. deviceData.serialNum = new Date().getTime().toString();
  84. console.log(deviceData.serialNum + "deviceData.serialNum")
  85. var body = tool.confirmCommand([0x06, 0x01], deviceData.serialNum, deviceData.key);
  86. common.reportLog(2, deviceData.dev_id, '下发获取柜体信息指令:' + Uint8ArrayToString(body));
  87. return [body];
  88. } //开仓指令
  89. function sendOpenBoxCommand() {
  90. app.globalData.deviceBTBMSBuf[deviceData.mac_id] = {
  91. bms_origin_data: null
  92. };
  93. return [tool.confirmCommand([0x05, 0x01], deviceData.serialNum, deviceData.key)];
  94. } // // 鉴权
  95. // function alterConnect(device, deviceId) {
  96. // return [sendCommand(0x01, [0xAB, 0xCD, 0xAB, 0xCD])]
  97. // }
  98. function readData(device, value, data) {
  99. var value = new Uint8Array(value);
  100. console.log('接收到的指令');
  101. console.log(value.toString);
  102. let macid = device.mac_id;
  103. if (value[value.length - 1] === 0x78 && value[0] === 0x7a) {
  104. //单包封包直接结束
  105. var bms_data = value;
  106. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  107. common.reportLog(1, deviceData.dev_id, '接收蓝牙返回指令:' + Uint8ArrayToString(bms_data));
  108. var json = getCompleteData(bms_data);
  109. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  110. return json;
  111. }
  112. if (value[value.length - 1] !== 0x78 && value[0] === 0x7a) {
  113. //分包开头
  114. var bms_data = value;
  115. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  116. }
  117. if (value[value.length - 1] !== 0x78 && value[0] !== 0x7a) {
  118. //分包中间过程封包
  119. var bms_data = tool.mergeUint8Array(app.globalData.deviceBTBMSBuf[macid].bms_origin_data, value);
  120. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  121. }
  122. if (value[value.length - 1] === 0x78 && value[0] !== 0x7a) {
  123. //分包结束
  124. var bms_data = tool.mergeUint8Array(app.globalData.deviceBTBMSBuf[macid].bms_origin_data, value);
  125. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = bms_data;
  126. common.reportLog(1, deviceData.dev_id, '接收蓝牙返回指令:' + Uint8ArrayToString(bms_data));
  127. var json = getCompleteData(bms_data);
  128. app.globalData.deviceBTBMSBuf[macid].bms_origin_data = null;
  129. return json;
  130. }
  131. }
  132. function Uint8ArrayToString(fileData) {
  133. var dataString = '';
  134. for (var i = 0; i < fileData.length; i++) {
  135. var dataInt = parseInt(fileData[i]);
  136. dataString = (dataString == '' ? dataString : dataString + ',') + (dataInt < 16 ? '0' + dataInt.toString(16) : dataInt.toString(16));
  137. }
  138. return dataString;
  139. }
  140. function getCompleteData(value) {
  141. var json = parse.realData(value);
  142. if (json.state !== 10001) {
  143. common.reportLog(1, +deviceData.dev_id, '接收蓝牙指令转化json:' + JSON.stringify(json));
  144. } //响应进行确认数据
  145. if (json.response == 1) {
  146. app.globalData.reponseData = json;
  147. } //上次操作未确认 发送取消指令
  148. json = cancleConfirm(json); //汇报进行确认数据
  149. json = reportConfirm(json, value); //获取电柜信息
  150. json = getCabintInfo(json);
  151. return json;
  152. } //上次操作未确认 发送取消指令
  153. function cancleConfirm(json) {
  154. if (json.response === 1) {
  155. app.globalData.reportData = json;
  156. }
  157. return json;
  158. } //汇报进行确认数据
  159. function reportConfirm(json, value) {
  160. if (json.report == 1) {
  161. var reportData = {};
  162. reportData.serialNo = json.serialNo;
  163. reportData.state = json.state;
  164. reportData.msg = json.msg;
  165. reportData.report = 1;
  166. app.globalData.reportData = reportData;
  167. if (value[2] === 0x82) {
  168. parse.reportCabintHire(deviceData.dev_id, json.orderNo, json);
  169. sendConfirmCommandBlue([0x02, 0x02], json.serialNo);
  170. }
  171. if (value[2] === 0x81) {
  172. parse.reportCabintExchange(deviceData.dev_id, json);
  173. sendConfirmCommandBlue([0x01, 0x02], json.serialNo);
  174. }
  175. if (value[2] === 0x83) {
  176. parse.reportCabintReturn(deviceData.dev_id, json.orderNo, json);
  177. sendConfirmCommandBlue([0x03, 0x02], json.serialNo);
  178. }
  179. }
  180. return json;
  181. }
  182. function sendConfirmCommandBlue(value, serialNum) {
  183. const bluetooth = require('../bluetooth.js');
  184. if (bluetooth.isConnected(deviceData.mac_id)) {
  185. bluetooth.sendConfirmCommand(
  186. deviceData.mac_id,
  187. value,
  188. serialNum,
  189. function () {},
  190. function () {}
  191. );
  192. } else {
  193. }
  194. } //获取电柜信息 蓝牙超时三次请求操作
  195. function getCabintInfo(json) {
  196. if (json.command === 0x86) {
  197. if (json.state === 10000) {
  198. isStart = 3;
  199. } else {
  200. if (isStart === 1) {
  201. setTimeout(function () {
  202. if (isStart !== 3) {
  203. isStart = 0;
  204. if (timeOut < 3) {
  205. //超时次数
  206. timeOut++;
  207. sendGetCabinetInfoCommand(deviceData);
  208. } else {
  209. json.state = 10002; //失败
  210. timeOut = 0;
  211. }
  212. }
  213. }, 1500);
  214. }
  215. isStart = 2;
  216. }
  217. }
  218. return json;
  219. }
  220. module.exports = {
  221. readServiceID: readServiceID,
  222. readID: readID,
  223. writeServiceID: writeServiceID,
  224. writeID: writeID,
  225. MTU: MTU,
  226. acceptDevice: acceptDevice,
  227. sendGetCabinetInfoCommand: sendGetCabinetInfoCommand,
  228. isDevice: isDevice,
  229. sendHireCommand: sendHireCommand,
  230. sendBackCommand: sendBackCommand,
  231. sendExchangeCommand: sendExchangeCommand,
  232. sendConfirmCommand: sendConfirmCommand,
  233. sendCancelCommand: sendCancelCommand,
  234. // alterConnect: alterConnect,
  235. readData: readData,
  236. isSingleBt: isSingleBt
  237. };