|
@@ -436,131 +436,131 @@ function alterConnect(device, deviceId, callback = () => {}, fail = () => {}) {
|
|
|
console.log(deviceId)
|
|
|
// var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
//蓝牙不使用登录指令
|
|
|
- var data = bluetoothDeviceConfig(device).getNearUnlockSet(device, deviceId);
|
|
|
- setTimeout(()=>{
|
|
|
- writeData(device, deviceId, data, callback, fail);
|
|
|
- },3000)
|
|
|
- // 获取蓝牙设备的服务列表
|
|
|
+ // var data = bluetoothDeviceConfig(device).nearUnlock(device, deviceId);
|
|
|
// setTimeout(()=>{
|
|
|
- // uni.getBLEDeviceServices({
|
|
|
- // deviceId: deviceId,
|
|
|
- // success(res) {
|
|
|
- // console.log(res,'res1111');
|
|
|
- // console.log(bluetoothDeviceConfig(device).writeServiceID)
|
|
|
- // // 获取蓝牙设备的写特征值
|
|
|
- // setTimeout(()=>{
|
|
|
- // uni.getBLEDeviceCharacteristics({
|
|
|
- // deviceId: deviceId,
|
|
|
- // serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
|
- // success(res) {
|
|
|
- // console.log(res,'res22222');
|
|
|
- // // 获取蓝牙设备的读特征值
|
|
|
- // uni.getBLEDeviceCharacteristics({
|
|
|
- // deviceId: deviceId,
|
|
|
- // serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
- // success(res) {
|
|
|
- // console.log(res,'res3333');
|
|
|
- // // 监听蓝牙设备的读特征值变化
|
|
|
- // uni.notifyBLECharacteristicValueChange({
|
|
|
- // state: true,
|
|
|
- // deviceId: deviceId,
|
|
|
- // serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
- // characteristicId: bluetoothDeviceConfig(device).readID,
|
|
|
- // success(res) {
|
|
|
- // console.log(res);
|
|
|
- // // 判断设备是否支持 ,并且当前平台是否为安卓
|
|
|
- // if (bluetoothDeviceConfig(device).MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
|
|
|
- // // 设置蓝牙设备的MTU
|
|
|
- // uni.setBLEMTU({
|
|
|
- // deviceId: deviceId,
|
|
|
- // mtu: bluetoothDeviceConfig(device).MTU,
|
|
|
- // success: (res) => {
|
|
|
- // console.log('setBLEMTU success>>', res);
|
|
|
- // // 判断设备是否有alterConnect方法
|
|
|
- // if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
- // var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
- // console.log(data[0],'data111111');
|
|
|
- // // 判断alterConnect方法是否返回数据
|
|
|
- // if (data) {
|
|
|
- // // 写入数据
|
|
|
- // setTimeout(()=>{
|
|
|
- // writeData(device, deviceId, data, callback, fail);
|
|
|
- // },3000)
|
|
|
+ // writeData(device, deviceId, data, callback, fail);
|
|
|
+ // },1000)
|
|
|
+ // 获取蓝牙设备的服务列表
|
|
|
+ setTimeout(()=>{
|
|
|
+ uni.getBLEDeviceServices({
|
|
|
+ deviceId: deviceId,
|
|
|
+ success(res) {
|
|
|
+ console.log(res,'res1111');
|
|
|
+ console.log(bluetoothDeviceConfig(device).writeServiceID)
|
|
|
+ // 获取蓝牙设备的写特征值
|
|
|
+ setTimeout(()=>{
|
|
|
+ uni.getBLEDeviceCharacteristics({
|
|
|
+ deviceId: deviceId,
|
|
|
+ serviceId: bluetoothDeviceConfig(device).writeServiceID,
|
|
|
+ success(res) {
|
|
|
+ console.log(res,'res22222');
|
|
|
+ // 获取蓝牙设备的读特征值
|
|
|
+ uni.getBLEDeviceCharacteristics({
|
|
|
+ deviceId: deviceId,
|
|
|
+ serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
+ success(res) {
|
|
|
+ console.log(res,'res3333');
|
|
|
+ // 监听蓝牙设备的读特征值变化
|
|
|
+ uni.notifyBLECharacteristicValueChange({
|
|
|
+ state: true,
|
|
|
+ deviceId: deviceId,
|
|
|
+ serviceId: bluetoothDeviceConfig(device).readServiceID,
|
|
|
+ characteristicId: bluetoothDeviceConfig(device).readID,
|
|
|
+ success(res) {
|
|
|
+ console.log(res);
|
|
|
+ // 判断设备是否支持 ,并且当前平台是否为安卓
|
|
|
+ if (bluetoothDeviceConfig(device).MTU && SystemInfoUtil.platform == SystemInfoUtil.ANDROID) {
|
|
|
+ // 设置蓝牙设备的MTU
|
|
|
+ uni.setBLEMTU({
|
|
|
+ deviceId: deviceId,
|
|
|
+ mtu: bluetoothDeviceConfig(device).MTU,
|
|
|
+ success: (res) => {
|
|
|
+ console.log('setBLEMTU success>>', res);
|
|
|
+ // 判断设备是否有alterConnect方法
|
|
|
+ if (bluetoothDeviceConfig(device).getNearUnlockSet) {
|
|
|
+ var data = bluetoothDeviceConfig(device).getNearUnlockSet(device, deviceId);
|
|
|
+ console.log(data[0],'data111111');
|
|
|
+ // 判断alterConnect方法是否返回数据
|
|
|
+ if (data) {
|
|
|
+ // 写入数据
|
|
|
+ setTimeout(()=>{
|
|
|
+ writeData(device, deviceId, data, callback, fail);
|
|
|
+ },3000)
|
|
|
|
|
|
- // } else {
|
|
|
- // // 调用回调函数
|
|
|
- // callback(res);
|
|
|
- // }
|
|
|
- // } else {
|
|
|
- // // 调用回调函数
|
|
|
- // callback(res);
|
|
|
- // }
|
|
|
- // },
|
|
|
- // fail: (res) => {
|
|
|
- // console.log('setBLEMTU fail>>', res);
|
|
|
- // // 判断设备是否有alterConnect方法
|
|
|
- // if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
- // var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
- // // 判断alterConnect方法是否返回数据
|
|
|
- // if (data) {
|
|
|
- // // 写入数据
|
|
|
- // writeData(device, deviceId, data, callback, fail);
|
|
|
- // } else {
|
|
|
- // // 调用回调函数
|
|
|
- // callback(res);
|
|
|
- // }
|
|
|
- // } else {
|
|
|
- // // 调用回调函数
|
|
|
- // callback(res);
|
|
|
- // }
|
|
|
- // }
|
|
|
- // });
|
|
|
- // } else {
|
|
|
- // // 判断设备是否有alterConnect方法
|
|
|
- // if (bluetoothDeviceConfig(device).alterConnect) {
|
|
|
- // var data = bluetoothDeviceConfig(device).alterConnect(device, deviceId);
|
|
|
- // // 判断alterConnect方法是否返回数据
|
|
|
- // if (data) {
|
|
|
- // // 写入数据
|
|
|
- // writeData(device, deviceId, data, callback, fail);
|
|
|
- // } else {
|
|
|
- // // 调用回调函数
|
|
|
- // callback(res);
|
|
|
- // }
|
|
|
- // } else {
|
|
|
- // // 调用回调函数
|
|
|
- // callback(res);
|
|
|
- // }
|
|
|
- // }
|
|
|
- // },
|
|
|
- // fail(res) {
|
|
|
- // // 调用失败回调函数
|
|
|
- // fail(res);
|
|
|
- // }
|
|
|
- // });
|
|
|
- // },
|
|
|
- // fail(res) {
|
|
|
- // // 调用失败回调函数
|
|
|
- // fail(res);
|
|
|
- // }
|
|
|
- // });
|
|
|
- // },
|
|
|
- // fail(res) {
|
|
|
- // console.log('getBLEDeviceServices fail',res);
|
|
|
- // // 调用失败回调函数
|
|
|
- // fail(res);
|
|
|
- // }
|
|
|
- // });
|
|
|
- // },500)
|
|
|
+ } else {
|
|
|
+ // 调用回调函数
|
|
|
+ callback(res);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 调用回调函数
|
|
|
+ callback(res);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fail: (res) => {
|
|
|
+ console.log('setBLEMTU fail>>', res);
|
|
|
+ // 判断设备是否有alterConnect方法
|
|
|
+ if (bluetoothDeviceConfig(device).getNearUnlockSet) {
|
|
|
+ var data = bluetoothDeviceConfig(device).getNearUnlockSet(device, deviceId);
|
|
|
+ // 判断alterConnect方法是否返回数据
|
|
|
+ if (data) {
|
|
|
+ // 写入数据
|
|
|
+ writeData(device, deviceId, data, callback, fail);
|
|
|
+ } else {
|
|
|
+ // 调用回调函数
|
|
|
+ callback(res);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 调用回调函数
|
|
|
+ callback(res);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ // 判断设备是否有alterConnect方法
|
|
|
+ if (bluetoothDeviceConfig(device).getNearUnlockSet) {
|
|
|
+ var data = bluetoothDeviceConfig(device).getNearUnlockSet(device, deviceId);
|
|
|
+ // 判断alterConnect方法是否返回数据
|
|
|
+ if (data) {
|
|
|
+ // 写入数据
|
|
|
+ writeData(device, deviceId, data, callback, fail);
|
|
|
+ } else {
|
|
|
+ // 调用回调函数
|
|
|
+ callback(res);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 调用回调函数
|
|
|
+ callback(res);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fail(res) {
|
|
|
+ // 调用失败回调函数
|
|
|
+ fail(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ fail(res) {
|
|
|
+ // 调用失败回调函数
|
|
|
+ fail(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ fail(res) {
|
|
|
+ console.log('getBLEDeviceServices fail',res);
|
|
|
+ // 调用失败回调函数
|
|
|
+ fail(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },500)
|
|
|
|
|
|
- // },
|
|
|
- // fail(res) {
|
|
|
+ },
|
|
|
+ fail(res) {
|
|
|
|
|
|
- // // 调用失败回调函数
|
|
|
- // fail(res);
|
|
|
- // }
|
|
|
- // });
|
|
|
- // },500)
|
|
|
+ // 调用失败回调函数
|
|
|
+ fail(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },500)
|
|
|
}
|
|
|
// 关闭设备连接
|
|
|
function closeDevice(macid, callback = () => {}, fail = () => {}) {
|
|
@@ -1096,7 +1096,7 @@ function executeDeviceCommand(macid, commandName, callback = () => {}, fail = ()
|
|
|
if (data) {
|
|
|
setTimeout(()=>{
|
|
|
writeData(device, deviceId, data, callback, fail);
|
|
|
- },100)
|
|
|
+ },200)
|
|
|
return true;
|
|
|
}
|
|
|
fail();
|