转为java语言:if(!MeshServer.getInstance().isConnected){ showToast("未连接蓝牙设备") return } if(nodeAddress==null || nodeAddress!!<0){ LogTool.d("node address is null or negative") return } if(imageInfo==null){ showToast("请先获取硬件信息") return } if(updateFile==null){ showToast("请先选择升级文件") return }
时间: 2023-06-27 18:07:30 浏览: 256
获取已连接的蓝牙设备
if (!MeshServer.getInstance().isConnected) {
showToast("未连接蓝牙设备");
return;
}
if (nodeAddress == null || nodeAddress < 0) {
LogTool.d("node address is null or negative");
return;
}
if (imageInfo == null) {
showToast("请先获取硬件信息");
return;
}
if (updateFile == null) {
showToast("请先选择升级文件");
return;
}
阅读全文