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

时间:2019-06-05 23:16:13

标签: javascript typescript bluetooth-lowenergy bluetooth-gatt web-bluetooth

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

我设置了GATT服务器,并且可以通过Web蓝牙获取诸如电池和状态之类的简单数据,但是,我可以通过Web蓝牙发送/接收文件吗?还是可能是逐件发送?

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

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

1 个答案:

答案 0 :(得分:0)

我找到了一种解决方案,我不知道这是否是最好的解决方案,但它运行得很好! 我只是将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以获得更多信息。

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