123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624 |
- const common = require('./common.js');
- import SystemInfoUtil from './SystemInfoUtil.js';
- const BWJT = 'BWJT';
- const JTBMS = 'JTBMS';
- const app = getApp();
- const bluetoothDevices = {
- ZX16D: require('./bluetooth/ZX16D.js'),
- FMBMS: require('./bluetooth/FMBMS.js'),
- LFBMS: require('./bluetooth/LFBMS.js'),
- JYBMS: require('./bluetooth/LFBMS.js'),
- BLFM: require('./bluetooth/BLFM.js'),
- ZXBT: require('./bluetooth/ZXBT.js'),
- LSBMS: require('./bluetooth/LSBMS.js'),
- BWJT: require('./bluetooth/ZXBT_JL.js'),
- JTBMS: require('./bluetooth/ZXBT_JL.js')
- };
- //初始化蓝牙
- function initBluetooth() {
- //监听蓝牙适配器状态变化事件
- console.log('初始化蓝牙');
- uni.onBluetoothAdapterStateChange((res) => {
- console.log(res);
- Object.keys(app.globalData.adapterStateChangeFunc).forEach((n) => app.globalData.adapterStateChangeFunc[n](res));
- });
- //监听低功耗蓝牙连接状态的改变事件。包括开发者主动连接或断开连接,设备丢失,连接异常断开等等
- uni.onBLEConnectionStateChange((res) => {
- console.log(res);
- if (app.globalData.connectionState[res.deviceId]) {
- app.globalData.connectionState[res.deviceId].connected = res.connected;
- const device = app.globalData.connectionState[res.deviceId].device;
- if (app.globalData.connectionStateChangeFunc[device.mac_id]) {
- Object.keys(app.globalData.connectionStateChangeFunc[device.mac_id]).forEach((p) => app.globalData.connectionStateChangeFunc[device.mac_id][p](res));
- }
- }
- });
- //监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
- uni.onBLECharacteristicValueChange((res) => {
- console.log(res);
- if (app.globalData.connectionState[res.deviceId]) {
- const device = app.globalData.connectionState[res.deviceId].device;
- if (
- res.serviceId.toUpperCase() == bluetoothDevices[device.device_type].readServiceID.toUpperCase() &&
- res.characteristicId.toUpperCase() == bluetoothDevices[device.device_type].readID.toUpperCase()
- ) {
- var data = bluetoothDevices[device.device_type].readData(device, res.value, app.globalData.connectionState[res.deviceId].data);
- if (data) {
- app.globalData.connectionState[res.deviceId].data = data;
- if (app.globalData.characteristicStateChangeFunc[device.mac_id]) {
- Object.keys(app.globalData.characteristicStateChangeFunc[device.mac_id]).forEach((p) =>
- app.globalData.characteristicStateChangeFunc[device.mac_id][p](data)
- );
- }
- console.log(app.globalData.connectionState[res.deviceId].data);
- }
- }
- }
- });
- }
- function onAdapterStateChange(name, callback) {
- app.globalData.adapterStateChangeFunc[name] = callback;
- }
- function offAdapterStateChange(name) {
- delete app.globalData.adapterStateChangeFunc[name];
- }
- function onConnectionStateChange(macid, name, callback) {
- if (!app.globalData.connectionStateChangeFunc[macid]) {
- app.globalData.connectionStateChangeFunc[macid] = {};
- }
- app.globalData.connectionStateChangeFunc[macid][name] = callback;
- }
- function offConnectionStateChange(macid, name) {
- if (app.globalData.connectionStateChangeFunc[macid]) {
- delete app.globalData.connectionStateChangeFunc[macid][name];
- }
- }
- function onCharacteristicStateChange(macid, name, callback) {
- if (!app.globalData.characteristicStateChangeFunc[macid]) {
- app.globalData.characteristicStateChangeFunc[macid] = {};
- }
- app.globalData.characteristicStateChangeFunc[macid][name] = callback;
- }
- function offCharacteristicStateChange(macid, name) {
- if (app.globalData.characteristicStateChangeFunc[macid]) {
- delete app.globalData.characteristicStateChangeFunc[macid][name];
- }
- }
- function getAdapterState(callback = () => {}, fail = () => {}) {
- uni.getBluetoothAdapterState({
- success: (res) => {
- callback(res);
- },
- fail: (res) => {
- console.log(res);
- fail(res);
- }
- });
- }
- function openBluetoothAdapter(callback = () => {}, fail = () => {}) {
- uni.openBluetoothAdapter({
- success: (res) => {
- console.log(res);
- callback(res);
- },
- fail: (res) => {
- console.log(res);
- fail(res);
- }
- });
- }
- function closeBluetoothAdapter(callback = () => {}, fail = () => {}) {
- uni.closeBluetoothAdapter({
- success: (res) => {
- app.globalData.adapterStateChangeFunc = {};
- app.globalData.connectionStateChangeFunc = {};
- app.globalData.characteristicStateChangeFunc = {};
- app.globalData.connectionState = {};
- callback(res);
- },
- fail: (res) => {
- console.log(res);
- fail(res);
- }
- });
- }
- function acceptDevice(device) {
- return bluetoothDevices[device.device_type] && bluetoothDevices[device.device_type].acceptDevice(device) ? true : false;
- }
- function isSingleBT(device_type) {
- if (bluetoothDevices[device_type] && bluetoothDevices[device_type].isSingleBt) {
- return bluetoothDevices[device_type].isSingleBt();
- }
- return false;
- }
- function isSginleBtByMacid(macid) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- console.log(app.globalData.connectionState);
- if (deviceId == undefined) {
- return false;
- }
- return isSingleBT(app.globalData.connectionState[deviceId].device.device_type);
- }
- function haveBMSForBT(device_type) {
- if (bluetoothDevices[device_type] && bluetoothDevices[device_type].haveBms) {
- return bluetoothDevices[device_type].haveBms();
- }
- return false;
- }
- function findDevice(device, callback = () => {}, fail = () => {}) {
- var deviceId = '';
- console.log('开始查找设备');
- if (!bluetoothDevices[device.device_type] || !bluetoothDevices[device.device_type].acceptDevice(device)) {
- return;
- }
- uni.startBluetoothDevicesDiscovery({
- success(res) {
- console.log(res);
- uni.getBluetoothDevices({
- success: (res) => {
- console.log(res);
- res.devices.forEach((data) => {
- console.log(data);
- if (bluetoothDevices[device.device_type].isDevice(device, data)) {
- console.log(device);
- uni.offBluetoothDeviceFound();
- uni.stopBluetoothDevicesDiscovery();
- deviceId = data.deviceId;
- if (app.globalData.connectionState[deviceId]) {
- app.globalData.connectionState[deviceId].device = device;
- } else {
- app.globalData.connectionState[deviceId] = {
- device: device,
- deviceId: deviceId,
- connected: false,
- data: {}
- };
- }
- callback(deviceId);
- }
- });
- setTimeout(function () {
- if (!deviceId) {
- uni.offBluetoothDeviceFound();
- uni.stopBluetoothDevicesDiscovery();
- fail();
- }
- }, 5000);
- },
- fail(res) {
- uni.stopBluetoothDevicesDiscovery();
- console.log(res);
- fail(res);
- }
- });
- uni.onBluetoothDeviceFound((res) => {
- console.log(res);
- res.devices.forEach((data) => {
- if (bluetoothDevices[device.device_type].isDevice(device, data)) {
- uni.offBluetoothDeviceFound();
- uni.stopBluetoothDevicesDiscovery();
- deviceId = data.deviceId;
- if (app.globalData.connectionState[deviceId]) {
- app.globalData.connectionState[deviceId].device = device;
- } else {
- app.globalData.connectionState[deviceId] = {
- device: device,
- deviceId: deviceId,
- connected: false,
- data: {}
- };
- }
- callback(deviceId);
- }
- });
- });
- },
- fail(res) {
- console.log(res);
- fail(res);
- }
- });
- }
- function connectDevice(device, callback = () => {}, fail = () => {}) {
- console.log('连接设备');
- console.log(device);
- if (!bluetoothDevices[device.device_type] || !bluetoothDevices[device.device_type].acceptDevice(device)) {
- return;
- }
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == device.mac_id);
- if (deviceId == undefined) {
- findDevice(
- device,
- (deviceId) => {
- console.log('找到设备');
- connectDevice(device, callback, fail);
- },
- (res) => {
- console.log('连接失败');
- fail(res);
- }
- );
- return;
- } else {
- if (app.globalData.connectionState[deviceId].connected) {
- callback();
- return;
- }
- }
- uni.createBLEConnection({
- deviceId: deviceId,
- success: (res) => {
- console.log(res);
- app.globalData.connectionState[deviceId] = {
- device: device,
- deviceId: deviceId,
- connected: true,
- data: {}
- };
- alterConnect(
- device,
- deviceId,
- (res) => {
- console.log(res);
- callback(res);
- },
- (res) => {
- console.log(res);
- closeDevice(deviceId);
- fail(res);
- }
- );
- },
- fail(res) {
- console.log(res);
- if (res.errCode == -1) {
- closeDevice(
- deviceId,
- (res) => {
- connectDevice(device, callback, fail);
- },
- (res) => {
- fail(res);
- }
- );
- } else {
- fail(res);
- }
- }
- });
- }
- function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
- if (!bluetoothDevices[device.device_type] || !bluetoothDevices[device.device_type].acceptDevice(device)) {
- return;
- }
- uni.getBLEDeviceServices({
- deviceId: deviceId,
- success(res) {
- console.log(res);
- uni.getBLEDeviceCharacteristics({
- deviceId: deviceId,
- serviceId: bluetoothDevices[device.device_type].writeServiceID,
- success(res) {
- console.log(res);
- uni.getBLEDeviceCharacteristics({
- deviceId: deviceId,
- serviceId: bluetoothDevices[device.device_type].readServiceID,
- success(res) {
- console.log(res);
- uni.notifyBLECharacteristicValueChange({
- state: true,
- deviceId: deviceId,
- serviceId: bluetoothDevices[device.device_type].readServiceID,
- characteristicId: bluetoothDevices[device.device_type].readID,
- success(res) {
- console.log(res);
- if (bluetoothDevices[device.device_type].MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
- uni.setBLEMTU({
- deviceId: deviceId,
- mtu: bluetoothDevices[device.device_type].MTU,
- success: (res) => {
- console.log('setBLEMTU success>>', res);
- if (bluetoothDevices[device.device_type].alterConnect) {
- var data = bluetoothDevices[device.device_type].alterConnect(device, deviceId);
- if (data) {
- writeData(device, deviceId, data, callback, fail);
- } else {
- callback(res);
- }
- } else {
- callback(res);
- }
- },
- fail: (res) => {
- console.log('setBLEMTU fail>>', res);
- }
- });
- } else {
- if (bluetoothDevices[device.device_type].alterConnect) {
- var data = bluetoothDevices[device.device_type].alterConnect(device, deviceId);
- if (data) {
- writeData(device, deviceId, data, callback, fail);
- } else {
- callback(res);
- }
- } else {
- callback(res);
- }
- }
- },
- fail(res) {
- fail(res);
- }
- });
- },
- fail(res) {
- fail(res);
- }
- });
- },
- fail(res) {
- fail(res);
- }
- });
- },
- fail(res) {
- fail(res);
- }
- });
- }
- function closeDevice(macid, callback = () => {}, fail = () => {}) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- fail();
- return;
- } else {
- if (!app.globalData.connectionState[deviceId].connected) {
- callback();
- return;
- }
- }
- const device = app.globalData.connectionState[deviceId].device;
- uni.closeBLEConnection({
- deviceId: deviceId,
- success: (res) => {
- console.log(res);
- if (app.globalData.connectionState[deviceId]) {
- app.globalData.connectionState[deviceId].connected = false;
- }
- callback(res);
- },
- fail(res) {
- console.log(res);
- fail(res);
- }
- });
- }
- function bmsInfo(macid) {
- console.log(macid);
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- return false;
- }
- const device = app.globalData.connectionState[deviceId].device;
- if (!bluetoothDevices[device.device_type].bmsInfo) {
- return false;
- }
- return bluetoothDevices[device.device_type].bmsInfo(device, deviceId, app.globalData.connectionState[deviceId].data);
- }
- function bmsSet(macid, name, vars, callback = () => {}, fail = () => {}) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- fail();
- return false;
- }
- const device = app.globalData.connectionState[deviceId].device;
- if (!bluetoothDevices[device.device_type].bmsSet) {
- fail();
- return false;
- }
- var data = bluetoothDevices[device.device_type].bmsSet(device, deviceId, name, vars);
- if (data) {
- writeData(device, deviceId, data, callback, fail);
- return true;
- }
- fail();
- return false;
- }
- function writeData(device, deviceId, data, callback = () => {}, fail = () => {}) {
- if (data.length == 0) {
- return;
- }
- console.log('写入数据');
- console.log(data);
- console.log(device);
- var buffer;
- console.log(device.device_type);
- if (device.device_type === BWJT || device.device_type === JTBMS) {
- buffer = new ArrayBuffer(data.length);
- var dataView = new DataView(buffer);
- data.forEach(function (item, index) {
- dataView.setUint8(index, item);
- });
- } else {
- buffer = common.toArrayBuffer(data.shift());
- }
- console.log('writeServiceID' + bluetoothDevices[device.device_type].writeServiceID);
- console.log('writeID' + bluetoothDevices[device.device_type].writeID);
- console.log(buffer);
- uni.writeBLECharacteristicValue({
- deviceId: deviceId,
- serviceId: bluetoothDevices[device.device_type].writeServiceID,
- characteristicId: bluetoothDevices[device.device_type].writeID,
- value: buffer,
- success(res) {
- console.log('写入数据成功');
- console.log(res);
- if (data.length == 0) {
- callback(res);
- } else {
- if (!(device.device_type === BWJT || device.device_type === JTBMS)) {
- console.log(device.device_type);
- setTimeout(() => {
- writeData(device, deviceId, data, callback, fail);
- }, 500);
- }
- }
- },
- fail(res) {
- console.log('写入数据失败');
- console.log(res);
- fail(res);
- }
- });
- }
- function stateUpdate(macid, callback = () => {}, fail = () => {}) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- fail();
- return false;
- }
- const device = app.globalData.connectionState[deviceId].device;
- if (!bluetoothDevices[device.device_type].stateUpdate) {
- fail();
- return false;
- }
- console.log(deviceId);
- console.log(device);
- var data = bluetoothDevices[device.device_type].stateUpdate(device, deviceId);
- if (data) {
- console.log(data);
- writeData(device, deviceId, data, callback, fail);
- return true;
- }
- fail();
- return false;
- }
- function turnOn(macid, callback = () => {}, fail = () => {}) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- fail();
- return false;
- }
- const device = app.globalData.connectionState[deviceId].device;
- if (!bluetoothDevices[device.device_type].turnOn) {
- fail();
- return false;
- }
- var data = bluetoothDevices[device.device_type].turnOn(device, deviceId);
- if (data) {
- writeData(device, deviceId, data, callback, fail);
- return true;
- }
- fail();
- return false;
- }
- function turnOff(macid, callback = () => {}, fail = () => {}) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- fail();
- return false;
- }
- const device = app.globalData.connectionState[deviceId].device;
- if (!bluetoothDevices[device.device_type].turnOff) {
- fail();
- return false;
- }
- var data = bluetoothDevices[device.device_type].turnOff(device, deviceId);
- if (data) {
- writeData(device, deviceId, data, callback, fail);
- return true;
- }
- fail();
- return false;
- }
- function bmsChargingMOS(macid, value, callback = () => {}, fail = () => {}) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- fail();
- return false;
- }
- const device = app.globalData.connectionState[deviceId].device;
- if (!bluetoothDevices[device.device_type].bmsChargingMOS) {
- fail();
- return false;
- }
- var data = bluetoothDevices[device.device_type].bmsChargingMOS(value - 0);
- if (data) {
- writeData(device, deviceId, data, callback, fail);
- return true;
- }
- fail();
- return false;
- }
- function bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- fail();
- return false;
- }
- const device = app.globalData.connectionState[deviceId].device;
- if (!bluetoothDevices[device.device_type].bmsDischargeMOS) {
- fail();
- return false;
- }
- var data = bluetoothDevices[device.device_type].bmsDischargeMOS(value - 0);
- if (data) {
- writeData(device, deviceId, data, callback, fail);
- return true;
- }
- fail();
- return false;
- }
- function isConnected(macid) {
- console.log('接收器');
- console.log(app.globalData.connectionState);
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- console.log(app.globalData.connectionState);
- if (deviceId == undefined) {
- return false;
- }
- return app.globalData.connectionState[deviceId].connected;
- }
- function getData(macid) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- return false;
- }
- return app.globalData.connectionState[deviceId].data;
- }
- function getConnectionState(macid) {
- const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
- if (deviceId == undefined) {
- return false;
- }
- return app.globalData.connectionState[deviceId];
- }
- module.exports = {
- initBluetooth: initBluetooth,
- onAdapterStateChange: onAdapterStateChange,
- offAdapterStateChange: offAdapterStateChange,
- onConnectionStateChange: onConnectionStateChange,
- offConnectionStateChange: offConnectionStateChange,
- onCharacteristicStateChange: onCharacteristicStateChange,
- offCharacteristicStateChange: offCharacteristicStateChange,
- getAdapterState: getAdapterState,
- openBluetoothAdapter: openBluetoothAdapter,
- closeBluetoothAdapter: closeBluetoothAdapter,
- acceptDevice: acceptDevice,
- findDevice: findDevice,
- connectDevice: connectDevice,
- closeDevice: closeDevice,
- stateUpdate: stateUpdate,
- turnOn: turnOn,
- turnOff: turnOff,
- bmsInfo: bmsInfo,
- bmsSet: bmsSet,
- isConnected: isConnected,
- getData: getData,
- isSingleBT: isSingleBT,
- haveBMSForBT: haveBMSForBT,
- isSginleBtByMacid: isSginleBtByMacid,
- getConnectionState: getConnectionState,
- bmsChargingMOS: bmsChargingMOS,
- bmsDischargeMOS: bmsDischargeMOS
- };
|