gpt4 book ai didi

javascript - 我可以通过网络蓝牙发送文件吗?

转载 作者:行者123 更新时间:2023-12-05 04:00:13 31 4
gpt4 key购买 nike

我目前正在开发一个嵌入式系统,可以计算汽车的数量并节省他们的速度和时间。所有这些数据都存储在一个简单的日志文件中(感谢 rsyslog)。同时,我开发了一个 web-API(在 Typescript/Angular 和 Electron 中用于桌面使用,后来也用于 Web)允许用户上传日志并将它们存储在本地他的笔记本电脑上。

我设置了一个 GATT 服务器,我可以通过网络蓝牙获取电池和状态等简单数据,但是,我可以通过网络蓝牙发送/接收文件吗?或者可以逐件发送?

我尝试了第二种方法,最大大小是每帧 512 字节,所以我将文件大小除以 512,然后将 X 帧发送到 Web 应用程序,但我不知道是否可行,因为我几天后无法正常工作......然后,我在蓝牙的网站上找到了这个: https://www.bluetooth.com/specifications/gatt/services/关贸总协定存在“对象传输服务”,但当您单击它时,我们可以阅读:“此服务提供管理和控制功能,支持通过单独的 L2CAP 连接定向 channel 发生的批量数据传输”。这是否意味着我们无法发送文件?

我应该改变我的计划并使用协议(protocol)吗?我还想将文件从笔记本电脑发送到嵌入式系统,例如配置文件和参数。

最佳答案

我找到了一个解决方案,我不知道它是否是最好的,但它工作得很好!我只是将我的 Uint8Array[] 分成一个 512 字节的数据包并发送它们。写作和阅读同样如此,如果它可以帮助别人的话,我把我的 TypeScript 代码放在下面:

async getFile() {
let file: string = '';
let value: string = 'begin';
let returnedValue = null;

while (value != '') {
try {
returnedValue = await this.characteristicScheduling.readValue();
value = String.fromCharCode.apply(null, new Uint8Array(returnedValue.buffer));
console.log(value);
file= file.concat(value);

} catch(e) {
console.log(e);
}
}

console.log('file: ' + file);
}

和写函数:

wait(ms: number) {
var start = new Date().getTime();
var end = start;
while(end < start + ms) {
end = new Date().getTime();
}
}

pushFile() {
let file= this.getFileContent();
let value: string;
let valueBytes = null;
console.log(file);

while (file.length > 0) {
// Copy the first 512 bytes
value = file.substr(0, 512);
// Remove the first 512 bytes
scheduling = file.substr(512)
console.log(file);
valueBytes = new TextEncoder().encode(value);

console.log(valueBytes);
const promise = this.characteristic.writeValue(valueBytes);
promise.then(val => {
console.log(val);
});
// The wait is isn't mandatory .. but just in case my embedded system is very busy
this.wait(100);
}

// Send empty frame to notice the Embedded system than its the end of transmission
valueBytes = new TextEncoder().encode('');
const promise = this.characteristic.writeValue(valueBytes);
promise.then(val => {
console.log(val);
});
}

当然,'this.characteristic'在我调用这些函数之前已经保存在我的类中了。关注https://googlechrome.github.io/samples/web-bluetooth/get-characteristics.html获取更多信息。

我是一名嵌入式工程师,所以公平对待我的“丑陋的网络代码”,如果您有关于乐观此代码的建议,请告诉我。希望对您有所帮助。

关于javascript - 我可以通过网络蓝牙发送文件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56469188/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com