我可以通过网络蓝牙发送文件吗?
Can I send files over web-bluetooth?
我目前正在开发一个嵌入式系统,可以计算汽车的数量并节省他们的速度和时间。所有这些数据都存储在一个简单的日志文件中(感谢 rsyslog)。同时,我开发了一个 web-API(在 Typescript/Angular 中使用 Electron 用于桌面使用,后来也用于 Web)允许用户上传日志并将它们存储在本地他的笔记本电脑上。
我设置了一个 GATT 服务器,我可以通过网络蓝牙获取电池和状态等简单数据,但是,我可以通过网络蓝牙 send/receive 获取文件吗?或者可以逐件发送?
我尝试了第二种方法,最大大小是每帧512字节,所以我将文件大小除以512并将X帧发送到Web-App,但我不知道是否可行因为几天后我无法正常工作......所以,我在蓝牙的网站上找到了这个:
https://www.bluetooth.com/specifications/gatt/services/
'Object Transfer Service' 与 GATT 一起存在,但是当您单击它时我们可以读取:"This service provide management and control features supporting bulk data transfer which occur via a separe L2CAP connection orientel channel"。这是否意味着我们无法发送文件?
我应该更改我的计划并使用协议吗?我还想从笔记本电脑向嵌入式系统发送文件,比如配置文件和参数。
我找到了一个解决方案,我不知道它是否是最好的,但它工作得很好!
我只是将我的 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'已经保存在我的class中了。关注 https://googlechrome.github.io/samples/web-bluetooth/get-characteristics.html 获取更多信息。
我是一名嵌入式工程师,所以请公平对待我的 'ugly web-code' 如果您有关于优化此代码的建议,请告诉我。希望对你有帮助。
我目前正在开发一个嵌入式系统,可以计算汽车的数量并节省他们的速度和时间。所有这些数据都存储在一个简单的日志文件中(感谢 rsyslog)。同时,我开发了一个 web-API(在 Typescript/Angular 中使用 Electron 用于桌面使用,后来也用于 Web)允许用户上传日志并将它们存储在本地他的笔记本电脑上。
我设置了一个 GATT 服务器,我可以通过网络蓝牙获取电池和状态等简单数据,但是,我可以通过网络蓝牙 send/receive 获取文件吗?或者可以逐件发送?
我尝试了第二种方法,最大大小是每帧512字节,所以我将文件大小除以512并将X帧发送到Web-App,但我不知道是否可行因为几天后我无法正常工作......所以,我在蓝牙的网站上找到了这个: https://www.bluetooth.com/specifications/gatt/services/ 'Object Transfer Service' 与 GATT 一起存在,但是当您单击它时我们可以读取:"This service provide management and control features supporting bulk data transfer which occur via a separe L2CAP connection orientel channel"。这是否意味着我们无法发送文件?
我应该更改我的计划并使用协议吗?我还想从笔记本电脑向嵌入式系统发送文件,比如配置文件和参数。
我找到了一个解决方案,我不知道它是否是最好的,但它工作得很好! 我只是将我的 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'已经保存在我的class中了。关注 https://googlechrome.github.io/samples/web-bluetooth/get-characteristics.html 获取更多信息。
我是一名嵌入式工程师,所以请公平对待我的 'ugly web-code' 如果您有关于优化此代码的建议,请告诉我。希望对你有帮助。