|
@@ -41,12 +41,13 @@ function initBluetooth() {
|
|
// console.log(app.globalData.connectionStateChangeFunc[device.mac_id],'app.globalData.connectionStateChangeFunc');
|
|
// console.log(app.globalData.connectionStateChangeFunc[device.mac_id],'app.globalData.connectionStateChangeFunc');
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+ console.log("监听值")
|
|
//监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
|
|
//监听低功耗蓝牙设备的特征值变化事件。必须先启用 notifyBLECharacteristicValueChange 接口才能接收到设备推送的 notification
|
|
uni.onBLECharacteristicValueChange((res) => {
|
|
uni.onBLECharacteristicValueChange((res) => {
|
|
- // console.log(res,'restest1111');
|
|
|
|
|
|
+ console.log(res,'restest1111');
|
|
if (app.globalData.connectionState[res.deviceId]) {
|
|
if (app.globalData.connectionState[res.deviceId]) {
|
|
const device = app.globalData.connectionState[res.deviceId].device;
|
|
const device = app.globalData.connectionState[res.deviceId].device;
|
|
- // console.log(res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase(),'00000');
|
|
|
|
|
|
+ console.log(res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase(),'00000');
|
|
if (
|
|
if (
|
|
res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase() &&
|
|
res.serviceId.toUpperCase() == bluetoothDeviceConfig(device).readServiceID.toUpperCase() &&
|
|
res.characteristicId.toUpperCase() == bluetoothDeviceConfig(device).readID.toUpperCase()
|
|
res.characteristicId.toUpperCase() == bluetoothDeviceConfig(device).readID.toUpperCase()
|
|
@@ -402,11 +403,14 @@ function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
console.log("xxxx2")
|
|
console.log("xxxx2")
|
|
console.log(deviceId)
|
|
console.log(deviceId)
|
|
// 获取蓝牙设备的服务列表
|
|
// 获取蓝牙设备的服务列表
|
|
|
|
+ setTimeout(()=>{
|
|
uni.getBLEDeviceServices({
|
|
uni.getBLEDeviceServices({
|
|
deviceId: deviceId,
|
|
deviceId: deviceId,
|
|
success(res) {
|
|
success(res) {
|
|
console.log(res,'res1111');
|
|
console.log(res,'res1111');
|
|
- // 获取蓝牙设备的写特征值
|
|
|
|
|
|
+ console.log(bluetoothDeviceConfig(device).writeServiceID)
|
|
|
|
+ // 获取蓝牙设备的写特征值
|
|
|
|
+ setTimeout(()=>{
|
|
uni.getBLEDeviceCharacteristics({
|
|
uni.getBLEDeviceCharacteristics({
|
|
deviceId: deviceId,
|
|
deviceId: deviceId,
|
|
serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
@@ -501,16 +505,21 @@ function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
fail(res) {
|
|
fail(res) {
|
|
|
|
+ console.log('getBLEDeviceServices fail',res);
|
|
// 调用失败回调函数
|
|
// 调用失败回调函数
|
|
fail(res);
|
|
fail(res);
|
|
}
|
|
}
|
|
- });
|
|
|
|
|
|
+ });
|
|
|
|
+ },500)
|
|
|
|
+
|
|
},
|
|
},
|
|
fail(res) {
|
|
fail(res) {
|
|
|
|
+
|
|
// 调用失败回调函数
|
|
// 调用失败回调函数
|
|
fail(res);
|
|
fail(res);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+ },500)
|
|
}
|
|
}
|
|
// 关闭设备连接
|
|
// 关闭设备连接
|
|
function closeDevice(macid, callback = () => {}, fail = () => {}) {
|
|
function closeDevice(macid, callback = () => {}, fail = () => {}) {
|
|
@@ -586,10 +595,12 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
if (data.length == 0) {
|
|
if (data.length == 0) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
+ console.log(data,data[0].length);
|
|
// 将数据转换为ArrayBuffer类型
|
|
// 将数据转换为ArrayBuffer类型
|
|
- var buffer;
|
|
|
|
|
|
+ let buffer;
|
|
|
|
+ // buffer = common.toArrayBuffer(data.shift());
|
|
buffer = common.toArrayBuffer(data.shift());
|
|
buffer = common.toArrayBuffer(data.shift());
|
|
- console.log(buffer,'buffer写入---------------------');
|
|
|
|
|
|
+ console.log(data[0],data.shift(),buffer,'buffer写入---------------------');
|
|
// console.log(buffer,'buffer111');
|
|
// console.log(buffer,'buffer111');
|
|
// 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
|
|
// 调用uni.writeBLECharacteristicValue方法,向蓝牙设备写入数据
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
@@ -597,7 +608,7 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
deviceId: deviceId,
|
|
deviceId: deviceId,
|
|
serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
characteristicId: bluetoothDeviceConfig(device).writeID,
|
|
characteristicId: bluetoothDeviceConfig(device).writeID,
|
|
- // writeType:'write',// 写入方式
|
|
|
|
|
|
+ writeType:'write',// 写入方式
|
|
value: buffer,
|
|
value: buffer,
|
|
// 成功回调函数
|
|
// 成功回调函数
|
|
success(res) {
|
|
success(res) {
|
|
@@ -620,7 +631,7 @@ function writeData(device, deviceId, data, callback = () => {}, fail = () => {})
|
|
fail(res);
|
|
fail(res);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- }, 500);
|
|
|
|
|
|
+ }, 600);
|
|
}
|
|
}
|
|
function stateUpdate(macid, callback = () => {}, fail = () => {}) {
|
|
function stateUpdate(macid, callback = () => {}, fail = () => {}) {
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|
|
const deviceId = Object.keys(app.globalData.connectionState).find((i) => app.globalData.connectionState[i].device.mac_id == macid);
|