|
@@ -4,7 +4,7 @@ import SystemInfoUtil from './SystemInfoUtil.js';
|
|
|
// 蓝牙对应的权限名称
|
|
|
// 蓝牙权限对应的中文名称
|
|
|
|
|
|
-const app = getApp();
|
|
|
+// var app = null;
|
|
|
const bluetoothDevices = {
|
|
|
ZX16D: require('./bluetooth/ZX16D.js'),
|
|
|
FMBMS: require('./bluetooth/FMBMS.js'),
|
|
@@ -23,9 +23,10 @@ const bluetoothDevices = {
|
|
|
//初始化蓝牙
|
|
|
function initBluetooth() {
|
|
|
console.log('initBluetooth');
|
|
|
+ const app = getApp();
|
|
|
//监听蓝牙适配器状态变化事件
|
|
|
uni.onBluetoothAdapterStateChange((res) => {
|
|
|
- console.log(res,'onBluetoothAdapterStateChange');
|
|
|
+ console.log(app,res,'onBluetoothAdapterStateChange');
|
|
|
Object.keys(app.globalData.adapterStateChangeFunc).forEach((n) => app.globalData.adapterStateChangeFunc[n](res));
|
|
|
});
|
|
|
//监听低功耗蓝牙连接状态的改变事件。包括开发者主动连接或断开连接,设备丢失,连接异常断开等等
|
|
@@ -45,7 +46,7 @@ function initBluetooth() {
|
|
|
// uni.onBLEMTUChange((res) => {
|
|
|
// console.log("MTU 变更:", res.mtu); // 实际生效的 MTU 大小
|
|
|
// });
|
|
|
- console.log("监听值")
|
|
|
+ console.log(app,"监听值")
|
|
|
//监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
|
|
|
uni.onBLECharacteristicValueChange((res) => {
|
|
|
console.log(res,'restest1111');
|
|
@@ -59,6 +60,7 @@ function initBluetooth() {
|
|
|
var data = bluetoothDeviceConfig(device).readData(device, res.value, app.globalData.connectionState[res.deviceId].data);
|
|
|
// console.log(data,'data--------');
|
|
|
if (data) {
|
|
|
+ const app = getApp();
|
|
|
app.globalData.connectionState[res.deviceId].data = data;
|
|
|
if (app.globalData.characteristicStateChangeFunc[device.mac_id]) {
|
|
|
Object.keys(app.globalData.characteristicStateChangeFunc[device.mac_id]).forEach((p) =>
|
|
@@ -74,14 +76,17 @@ function initBluetooth() {
|
|
|
}
|
|
|
// 监听蓝牙适配器状态变化事件
|
|
|
function onAdapterStateChange(name, callback) {
|
|
|
+ const app = getApp();
|
|
|
app.globalData.adapterStateChangeFunc[name] = callback;
|
|
|
}
|
|
|
// 移除蓝牙适配器状态变化事件的监听
|
|
|
function offAdapterStateChange(name) {
|
|
|
+ const app = getApp();
|
|
|
delete app.globalData.adapterStateChangeFunc[name];
|
|
|
}
|
|
|
// 监听蓝牙设备连接状态变化事件
|
|
|
function onConnectionStateChange(macid, name, callback) {
|
|
|
+ const app = getApp();
|
|
|
if (!app.globalData.connectionStateChangeFunc[macid]) {
|
|
|
app.globalData.connectionStateChangeFunc[macid] = {};
|
|
|
}
|
|
@@ -89,12 +94,14 @@ function onConnectionStateChange(macid, name, callback) {
|
|
|
}
|
|
|
// 移除蓝牙设备连接状态变化事件的监听
|
|
|
function offConnectionStateChange(macid, name) {
|
|
|
+ const app = getApp();
|
|
|
if (app.globalData.connectionStateChangeFunc[macid]) {
|
|
|
delete app.globalData.connectionStateChangeFunc[macid][name];
|
|
|
}
|
|
|
}
|
|
|
// 监听蓝牙特征值状态变化事件
|
|
|
function onCharacteristicStateChange(macid, name, callback) {
|
|
|
+ const app = getApp();
|
|
|
if (!app.globalData.characteristicStateChangeFunc[macid]) {
|
|
|
app.globalData.characteristicStateChangeFunc[macid] = {};
|
|
|
}
|
|
@@ -102,6 +109,7 @@ function onCharacteristicStateChange(macid, name, callback) {
|
|
|
}
|
|
|
// 移除蓝牙特征值状态变化事件的监听
|
|
|
function offCharacteristicStateChange(macid, name) {
|
|
|
+ const app = getApp();
|
|
|
if (app.globalData.characteristicStateChangeFunc[macid]) {
|
|
|
delete app.globalData.characteristicStateChangeFunc[macid][name];
|
|
|
}
|
|
@@ -136,6 +144,7 @@ function openBluetoothAdapter(callback = () => {}, fail = () => {}) {
|
|
|
function closeBluetoothAdapter(callback = () => {}, fail = () => {}) {
|
|
|
uni.closeBluetoothAdapter({
|
|
|
success: (res) => {
|
|
|
+ const app = getApp();
|
|
|
app.globalData.adapterStateChangeFunc = {};
|
|
|
app.globalData.connectionStateChangeFunc = {};
|
|
|
app.globalData.characteristicStateChangeFunc = {};
|
|
@@ -189,6 +198,7 @@ function isVoltageToEle(device) {
|
|
|
}
|
|
|
// 根据macid判断是否是单蓝牙设备
|
|
|
function isSginleBtByMacid(macid) {
|
|
|
+ const app = getApp();
|
|
|
// 根据macid查找设备id
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
// 打印全局连接状态
|
|
@@ -234,6 +244,7 @@ function findDevice(device, callback = () => {}, fail = () => {}) {
|
|
|
// console.log(data,'data***************');
|
|
|
// 判断设备是否为指定设备
|
|
|
if (bluetoothDeviceConfig(device).isDevice(device, data)) {
|
|
|
+ const app = getApp();
|
|
|
// uni.offBluetoothDeviceFound();
|
|
|
uni.stopBluetoothDevicesDiscovery(); //查找到蓝牙设备停止搜索
|
|
|
deviceId = data.deviceId;
|
|
@@ -284,6 +295,7 @@ function findDevice(device, callback = () => {}, fail = () => {}) {
|
|
|
// 停止蓝牙设备搜索
|
|
|
uni.stopBluetoothDevicesDiscovery();
|
|
|
deviceId = data.deviceId;
|
|
|
+ const app = getApp();
|
|
|
// 检查全局状态中是否已经存在该设备
|
|
|
if (app.globalData.connectionState[deviceId]) {
|
|
|
app.globalData.connectionState[deviceId].device = device;
|
|
@@ -321,6 +333,8 @@ function connectDevice(device, callback = () => {}, fail = () => {}) {
|
|
|
if (!bluetoothDeviceConfig(device) || !bluetoothDeviceConfig(device).acceptDevice(device)) {
|
|
|
return;
|
|
|
}
|
|
|
+ const app = getApp();
|
|
|
+ console.log(app,'连接函数connectDevice deviceId111111');
|
|
|
// 获取设备ID
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == device.mac_id);
|
|
|
console.log(deviceId,'连接函数connectDevice deviceId');
|
|
@@ -352,6 +366,7 @@ function connectDevice(device, callback = () => {}, fail = () => {}) {
|
|
|
deviceId: deviceId,
|
|
|
success: (res) => {
|
|
|
console.log(res,'蓝牙连接成功');
|
|
|
+ const app = getApp();
|
|
|
// 更新连接状态
|
|
|
app.globalData.connectionState[deviceId] = {
|
|
|
device: device,
|
|
@@ -530,7 +545,8 @@ function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
|
}
|
|
|
// 关闭设备连接
|
|
|
function closeDevice(macid, callback = () => {}, fail = () => {}) {
|
|
|
- // 获取设备ID
|
|
|
+ const app=getApp()
|
|
|
+ // 获取设备ID
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
// 如果设备ID不存在,则调用fail函数
|
|
|
if (deviceId == undefined) {
|
|
@@ -550,6 +566,7 @@ function closeDevice(macid, callback = () => {}, fail = () => {}) {
|
|
|
deviceId: deviceId,
|
|
|
success: (res) => {
|
|
|
console.log(res);
|
|
|
+ const app = getApp();
|
|
|
// 如果设备连接状态存在,则将连接状态设置为false
|
|
|
if (app.globalData.connectionState[deviceId]) {
|
|
|
app.globalData.connectionState[deviceId].connected = false;
|
|
@@ -652,6 +669,7 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
|
// }, 200);
|
|
|
}
|
|
|
function stateUpdate(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -671,6 +689,7 @@ function stateUpdate(macid, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function voltageToEle(macid, value, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -690,6 +709,7 @@ function voltageToEle(macid, value, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function turnOn(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -709,6 +729,7 @@ function turnOn(macid, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function turnOnBuzzer(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -728,6 +749,7 @@ function turnOnBuzzer(macid, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function turnOffBuzzer(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -747,6 +769,7 @@ function turnOffBuzzer(macid, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function turnOff(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -766,6 +789,7 @@ function turnOff(macid, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function bmsChargingMOS(macid, value, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -785,6 +809,7 @@ function bmsChargingMOS(macid, value, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -804,6 +829,7 @@ function bmsDischargeMOS(macid, value, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function isConnected(macid) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
return false;
|
|
@@ -811,6 +837,7 @@ function isConnected(macid) {
|
|
|
return app.globalData.connectionState[deviceId].connected;
|
|
|
}
|
|
|
function getData(macid) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
return false;
|
|
@@ -818,6 +845,7 @@ function getData(macid) {
|
|
|
return app.globalData.connectionState[deviceId].data;
|
|
|
}
|
|
|
function getConnectionState(macid) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
return false;
|
|
@@ -841,6 +869,7 @@ function isUniversalBluetoothPlugin(device) {
|
|
|
}
|
|
|
}
|
|
|
function sendHireCommand(macid, info, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -860,6 +889,7 @@ function sendHireCommand(macid, info, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function sendBackCommand(macid, info, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -879,6 +909,7 @@ function sendBackCommand(macid, info, callback = () => {}, fail = () => {}) {
|
|
|
return false;
|
|
|
}
|
|
|
function sendExchangeCommand(macid, info, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -899,6 +930,7 @@ function sendExchangeCommand(macid, info, callback = () => {}, fail = () => {})
|
|
|
}
|
|
|
// 定义一个函数,用于发送获取柜子信息的命令
|
|
|
function sendGetCabinetInfoCommand(macid, info, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
// 获取设备ID
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
console.log(deviceId,'deviceId0000');
|
|
@@ -929,6 +961,7 @@ function sendGetCabinetInfoCommand(macid, info, callback = () => {}, fail = () =
|
|
|
return false;
|
|
|
}
|
|
|
function sendConfirmCommand(macid, value, serialNum, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -948,6 +981,7 @@ function sendConfirmCommand(macid, value, serialNum, callback = () => {}, fail =
|
|
|
return false;
|
|
|
}
|
|
|
function sendCancelCommand(macid, serialNum, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -969,6 +1003,7 @@ function sendCancelCommand(macid, serialNum, callback = () => {}, fail = () => {
|
|
|
|
|
|
//切换正常工厂模式
|
|
|
function sendSwitchNormalCommand(macid, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -990,7 +1025,7 @@ function sendSwitchNormalCommand(macid, callback = () => {}, fail = () => {}) {
|
|
|
}
|
|
|
|
|
|
function sendOTACommand(macid, callback = () => {}, fail = () => {}) {
|
|
|
-
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -1027,6 +1062,7 @@ function sendOTACommand(macid, callback = () => {}, fail = () => {}) {
|
|
|
}
|
|
|
function executeDeviceCommand(macid, commandName, callback = () => {}, fail = () => {}) {
|
|
|
console.log('test');
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|
|
@@ -1039,7 +1075,9 @@ function executeDeviceCommand(macid, commandName, callback = () => {}, fail = ()
|
|
|
}
|
|
|
var data = bluetoothDeviceConfig(device)[commandName](device, deviceId);
|
|
|
if (data) {
|
|
|
- writeData(device, deviceId, data, callback, fail);
|
|
|
+ setTimeout(()=>{
|
|
|
+ writeData(device, deviceId, data, callback, fail);
|
|
|
+ },200)
|
|
|
return true;
|
|
|
}
|
|
|
fail();
|
|
@@ -1083,6 +1121,7 @@ function getSensitivity(macid, callback = () => {}, fail = () => {}) {
|
|
|
}
|
|
|
//设置灵敏度
|
|
|
function setSensitivity(macid,type, callback = () => {}, fail = () => {}) {
|
|
|
+ const app = getApp();
|
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
|
if (deviceId == undefined) {
|
|
|
fail();
|