ZXCar.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. const common = require('../common.js');
  2. const FMBMS = require('./FMBMS.js');
  3. const readServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  4. const readID = '000036F6-0000-1000-8000-00805F9B34FB';
  5. const writeServiceID = '0000FEE7-0000-1000-8000-00805F9B34FB';
  6. const writeID = '000036F5-0000-1000-8000-00805F9B34FB';
  7. const MTU = 115;
  8. const app = getApp();
  9. let subIndex = -1
  10. function acceptDevice(device) {
  11. return device.btid ? true : false;
  12. }
  13. function isSingleBt() {
  14. console.log('是单蓝牙');
  15. return true;
  16. }
  17. function haveBms() {
  18. console.log('是单蓝牙并且带bms');
  19. return true;
  20. }
  21. function isDevice(device, data) {
  22. // console.log(device,data,'device111');
  23. const advertisData = new Uint8Array(data.advertisData);
  24. // console.log(advertisData.slice(4, 10).toString(),'device2222');
  25. const mac = device.btid
  26. .split('')
  27. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  28. .filter((p, i) => i % 2 == 0);
  29. // if ( advertisData.slice(4, 10).toString() == "095A5832") {
  30. // return true;
  31. // }
  32. if (data.name === "ZX2202220000000") {
  33. return true
  34. }
  35. return false;
  36. }
  37. function alterConnect(device, deviceId) {
  38. //登录 crc[0x1F,0x0F,0x5A,0x58,0x32,0x32,0x30,0x32,0x32,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x08,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x67,0xAC,0x53,0xE7,0x08,0x00]
  39. //登录 [[0x22,0x22,0x01,0x1F,0x0F,0x5A,0x58,0x32,0x32,0x30,0x32,0x32,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x08,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x67,0xAC,0x53,0xE7,0x08,0x00,crc_data,0xAA,0xAA]]
  40. //时间戳 0x67AC53E7 16:00:05
  41. //切换正常,工厂下发指令 [[0x22,0x22,0x54,0x01,0x01,0x12,0xAA,0xAA]]
  42. //OTA 升级指令 [[0x22,0x22,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,n,0xCB,0xAA,0xAA]]
  43. const data = [0x1F, 0x0F, 0x5A, 0x58, 0x32, 0x32, 0x30, 0x32, 0x32, 0x32, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
  44. 0x08, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x67, 0xAC, 0x53, 0xE7, 0x08, 0x00
  45. ]
  46. const crc_data = crc8Ieee8023(data)
  47. console.log(crc_data, 111);
  48. return [
  49. [0x22, 0x22, 0x01, 0x1F, 0x0F, 0x5A, 0x58, 0x32, 0x32, 0x30, 0x32, 0x32, 0x32, 0x30, 0x30, 0x30, 0x30, 0x30,
  50. 0x30, 0x30, 0x08, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x67, 0xAC, 0x53, 0xE7, 0x08, 0x00,
  51. crc_data, 0xAA, 0xAA
  52. ]
  53. ]
  54. //return [sendCommand(0x01, [0xAB, 0xCD, 0xAB, 0xCD])]
  55. }
  56. function crc8Ieee8023(data) {
  57. let crc = 0x00; // 初始化CRC为0
  58. const polynomial = 0x07; // CRC-8 IEEE 802.3 多项式
  59. // 遍历数据数组中的每个字节
  60. for (let byte of data) {
  61. crc ^= byte; // 将当前字节与CRC寄存器进行异或操作
  62. // 对CRC寄存器的每一位进行8次迭代
  63. for (let i = 0; i < 8; i++) {
  64. if (crc & 0x80) { // 检查最高位是否为1
  65. crc = (crc << 1) ^ polynomial; // 左移一位并与多项式异或
  66. } else {
  67. crc <<= 1; // 仅左移一位
  68. }
  69. }
  70. // 截断CRC到8位(在JavaScript中这一步是多余的,因为位运算会自动处理溢出)
  71. crc &= 0xFF;
  72. }
  73. // 返回CRC校验码的最低8位,并转换为十六进制字符串
  74. return '0x' + crc.toString(16).toUpperCase().padStart(2, '0'); // 使用padStart确保结果始终是两位十六进制数
  75. }
  76. //收到硬件方向软件方发送的数据
  77. function readData(device, value, data) {
  78. console.log(value, 'test1111');
  79. var value = new Uint8Array(value);
  80. console.log(value, 'value***************************');
  81. // switch (value[0]) {
  82. // case 0x01:
  83. // //登陆成功准备
  84. // switchFactory(device)
  85. // break;
  86. // case 0x42:
  87. // //data = FMBMS.BMSReply(value.slice(2, 2 + value[1]), data)
  88. // packBmsData(device, value, data);
  89. // break;
  90. // }
  91. switch(value[2]){
  92. case 0x66:
  93. break;
  94. }
  95. return data;
  96. }
  97. function parseOTAData(){
  98. //解析是否成功&&第几个包
  99. //如果是第一个包成功 发送第二个包的数据 //otaUpgrade
  100. }
  101. function sendCommand(cmd, data = []) {
  102. const startCmd = [0x02, 0x02]
  103. const endCmd = [0xAA, 0xAA]
  104. data = startCmd.concat(cmd).concat(endCmd)
  105. return data
  106. }
  107. function stateUpdate(device, deviceId) {
  108. return [sendCommand(0x04), sendCommand(0x02, FMBMS
  109. .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]]
  110. }
  111. function turnOn(device, deviceId) {
  112. return [sendCommand(0x02, FMBMS.BMSTurnOn())];
  113. }
  114. function turnOff(device, deviceId) {
  115. return [sendCommand(0x02, FMBMS.BMSTurnOff())];
  116. }
  117. function switchFactory(device, deviceId) {
  118. return [sendCommand([0x54, 0x01, 0x01, 0x12])];
  119. }
  120. //升级OTA
  121. async function otaUpgrade(device, deviceId) {
  122. //return [sendCommand([0x54,0x01,0x01,0x12])];
  123. //第一步先读取BIN文件的二进制流
  124. const subPackage = await readBinBinarayToCommand()
  125. // console.log(dataRecursion(subPackage,subIndex))
  126. return dataRecursion(subPackage)
  127. // //提取分包数据
  128. // var subPackage = []
  129. // for(var i=0;Math.ceil(fileCommandList.length/80) >i;i++){
  130. // //提取数组的分割数据
  131. // var subCmd = []
  132. // subCmd = [0x22,0x22,]
  133. // //[[0x01,0x02,0x23],[0x04,0x05,0x06]] subPackage
  134. // subPackage.push(subCmd) //提取80个数据 0-80 81-160
  135. // }
  136. // return [subPackage[2]]
  137. }
  138. function dataRecursion(subPackage){
  139. subIndex += 1
  140. let endPackage = 0x00
  141. if(subPackage.groupedArray.length - 1 == subIndex){
  142. endPackage = 0x01
  143. }
  144. let startArray = [0x22,0x22,0x30,0x30,0x00,0x58,0x00]
  145. startArray = startArray.concat(decimalToHexBytes(subPackage.size,4))
  146. console.log(222222)
  147. startArray = startArray.concat(decimalToHexBytes(subIndex + 1,2))
  148. startArray.push(endPackage)
  149. startArray = startArray.concat(subPackage.groupedArray[subIndex])
  150. startArray.push(0xCB)
  151. console.log(subPackage.groupedArray[subIndex])
  152. startArray = startArray.concat([0xAA,0xAA])
  153. console.log(startArray)
  154. return startArray
  155. }
  156. async function readBinBinarayToCommand() {
  157. let res = await uni.request({
  158. url: 'https://opt.bms16.com/ota.BIN', // 文件的网络地址
  159. method: 'GET',
  160. responseType: 'arraybuffer', // 指定响应类型为 arraybuffer
  161. });
  162. return arrayBufferToHexWithPrefix(res[1].data)
  163. }
  164. function arrayBufferToHexWithPrefix(buffer,groupSize = 80) {
  165. const uint8Array = new Uint8Array(buffer);
  166. const groupedArray = [];
  167. const size = uint8Array.length
  168. // 遍历数据,每 groupSize 个字节为一组
  169. for (let i = 0; i < size; i += groupSize) {
  170. const group = Array.from(uint8Array.slice(i, i + groupSize)) // 获取当前分组
  171. // .map(byte => '0x' + byte.toString(16).padStart(2, 0)); // 添加 0x 前缀
  172. groupedArray.push(group); // 将分组添加到结果中
  173. }
  174. return {
  175. size,
  176. groupedArray
  177. };
  178. }
  179. //进制转化
  180. function decimalToHexBytes(decimal,bytes){
  181. const maxValue = Math.pow(2, 8 * bytes) - 1;
  182. // 创建一个数组来存储字节
  183. const byteArray = new Array(bytes);
  184. // 将十进制数分解为字节
  185. for (let i = 0; i < bytes; i++) {
  186. // 每次取最低的8位(一个字节)
  187. byteArray[bytes - 1 - i] = decimal & 0xff;
  188. // 右移8位,处理下一个字节
  189. decimal >>>= 8;
  190. }
  191. return byteArray;
  192. }
  193. module.exports = {
  194. readServiceID: readServiceID,
  195. readID: readID,
  196. writeServiceID: writeServiceID,
  197. writeID: writeID,
  198. MTU: MTU,
  199. acceptDevice: acceptDevice,
  200. isDevice: isDevice,
  201. alterConnect: alterConnect,
  202. readData: readData,
  203. stateUpdate: stateUpdate,
  204. turnOn: turnOn,
  205. turnOff: turnOff,
  206. isSingleBt: isSingleBt,
  207. haveBms: haveBms,
  208. otaUpgrade
  209. };