AD3BTS.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. const common = require('../common.js');
  2. const app = getApp();
  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 = 128;
  8. var joinPack = [];
  9. function acceptDevice(device) {
  10. return device.btid ? true : false;
  11. }
  12. function isSingleBt() {
  13. return true;
  14. }
  15. function isBuzzer() {
  16. return true;
  17. }
  18. function haveBms() {
  19. console.log('是单蓝牙并且带bms');
  20. return false;
  21. }
  22. function isDevice(device, data) {
  23. const advertisData = new Uint8Array(data.advertisData);
  24. const mac = device.btid
  25. .split('')
  26. .map((p, i) => parseInt(p + device.btid[i + 1], 16))
  27. .filter((p, i) => i % 2 == 0);
  28. if (advertisData.slice(0, 4).toString() == [9, 255, 1, 2].toString() && advertisData.slice(4, 10).toString() == mac.toString()) {
  29. return true;
  30. }
  31. return false;
  32. }
  33. function sendCommand(cmd, data = []) {
  34. data = [cmd, data.length].concat(data);
  35. return common.completArrayCRC(data, data.length);
  36. }
  37. // 鉴权
  38. function alterConnect(device, deviceId) {
  39. return [sendCommand(1, [171, 205, 171, 205])];
  40. }
  41. function readData(device, value, data) {
  42. var value = new Uint8Array(value);
  43. for (var i = 0; value.length > i; i++) {
  44. console.log(value[i]);
  45. }
  46. switch (value[0]) {
  47. case 72:
  48. if (value.length == 7) {
  49. data.voltage = value[2] * 256 + value[3] * 1;
  50. if (value[4] == 128) {
  51. data.temp = -value[5];
  52. } else {
  53. data.temp = value[5];
  54. }
  55. }
  56. console.log('电压来了');
  57. console.log(data);
  58. break;
  59. case 66:
  60. break;
  61. }
  62. if (value[0] != 72 && value.length != 7) {
  63. return;
  64. }
  65. return data;
  66. }
  67. function sendQVCommand(data) {
  68. data = [6, data.length].concat(data);
  69. return common.completArrayCRC(data, data.length);
  70. }
  71. function sendDataCommand(data) {
  72. data = [2, data.length, (data.length & 65280) >> 8, data.length & 255, 0].concat(data);
  73. return common.completArrayCRC(data, data.length);
  74. }
  75. function voltageToEle(device, value) {
  76. var commandList = [];
  77. var list = hexToList(value);
  78. commandList.push(sendQVCommand(list));
  79. return commandList;
  80. }
  81. function stateUpdate(device, deviceId) {
  82. return [[64, 0, 64]];
  83. }
  84. function turnOn(device, deviceId) {
  85. return [sendCommand(48, [170])];
  86. }
  87. function turnOff(device, deviceId) {
  88. return [sendCommand(48, [187])];
  89. }
  90. function turnOnBuzzer(device, deviceId) {
  91. return [sendCommand(80, [170])];
  92. }
  93. function turnOffBuzzer(device, deviceId) {
  94. return [sendCommand(80, [187])];
  95. }
  96. function bmsDischargeMOS(value, device) {
  97. if (value == 1) {
  98. const bluetoothConfig = app.globalData.bluetoothConfig;
  99. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  100. var turnonCommand = bluetoothConfig[device.device_type].turnon;
  101. var commandList = [];
  102. var list = hexToList(turnonCommand);
  103. commandList.push(sendDataCommand(list));
  104. return commandList;
  105. }
  106. } else {
  107. const bluetoothConfig = app.globalData.bluetoothConfig;
  108. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  109. var turnoffCommand = bluetoothConfig[device.device_type].turnoff;
  110. var commandList = [];
  111. var list = hexToList(turnoffCommand);
  112. commandList.push(sendDataCommand(list));
  113. return commandList;
  114. }
  115. }
  116. }
  117. function bmsChargingMOS(value, device) {
  118. if (value == 1) {
  119. const bluetoothConfig = app.globalData.bluetoothConfig;
  120. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  121. var chargingMosOn = bluetoothConfig[device.device_type].chargingMosOn;
  122. var commandList = [];
  123. var list = hexToList(chargingMosOn);
  124. commandList.push(sendDataCommand(list));
  125. return commandList;
  126. }
  127. } else {
  128. const bluetoothConfig = app.globalData.bluetoothConfig;
  129. if (Object.keys(bluetoothConfig).includes(device.device_type)) {
  130. var chargingMosOff = bluetoothConfig[device.device_type].chargingMosOff;
  131. var commandList = [];
  132. var list = hexToList(chargingMosOff);
  133. commandList.push(sendDataCommand(list));
  134. return commandList;
  135. }
  136. }
  137. }
  138. function hexToList(str) {
  139. var val = [];
  140. for (var i = 0; i < str.length / 2; i++) {
  141. val.push(parseInt(str.substring(0 + i * 2, 2 + i * 2), 16));
  142. }
  143. return val;
  144. }
  145. module.exports = {
  146. readServiceID: readServiceID,
  147. readID: readID,
  148. writeServiceID: writeServiceID,
  149. writeID: writeID,
  150. MTU: MTU,
  151. acceptDevice: acceptDevice,
  152. isDevice: isDevice,
  153. alterConnect: alterConnect,
  154. readData: readData,
  155. stateUpdate: stateUpdate,
  156. turnOn: turnOn,
  157. turnOff: turnOff,
  158. turnOnBuzzer: turnOnBuzzer,
  159. turnOffBuzzer: turnOffBuzzer,
  160. isSingleBt: isSingleBt,
  161. haveBms: haveBms,
  162. bmsDischargeMOS: bmsDischargeMOS,
  163. bmsChargingMOS: bmsChargingMOS,
  164. voltageToEle: voltageToEle,
  165. isBuzzer: isBuzzer
  166. };