uniapp 低功耗蓝牙BLE分包

ble.js

javascript 复制代码
  // 分包写入蓝牙
  async sendWriteBLECharacteristicValue(
    deviceId,
    serviceId,
    writeCharacteristicId,
    readCharacteristicId,
    buffer,
    success, // 成功回调
    failure, // 失败回调
  ) {
    const offset = 500; // 偏移量
    let pos = 0; // 位置
    let bytes = buffer.byteLength; // 总字节
    let that = this;
    while (bytes > 0) {
      let endPos = bytes > offset ? pos + offset : pos + bytes;
      const tempBuffer = buffer.slice(pos, endPos);
      pos += offset;
      bytes -= offset;
      // 延迟发送
      await that.sendDelay(150, tempBuffer).then((buffer) => {
        that.writeBLECharacteristicValue(
          deviceId,
          serviceId,
          writeCharacteristicId,
          buffer,
          (res) => {
            if (buffer.byteLength < offset) {
              success(res);
            }
          },
          (err) => {
            failure(err);
          }
        );
      });
      if (readCharacteristicId) {
        console.log(readCharacteristicId, "读文件");
        uni.readBLECharacteristicValue({
          deviceId: deviceId,
          serviceId: serviceId,
          characteristicId: readCharacteristicId,
        });
      }
    }
  }

  sendDelay(delay, buffer) {
    return new Promise((resolve, reject) => {
      setTimeout(() => resolve(buffer), delay);
    });
  }

  writeBLECharacteristicValue(
    deviceId,
    serviceId,
    characteristicId,
    buffer,
    success,
    failure
  ) {
    plus.bluetooth.writeBLECharacteristicValue({
      deviceId: deviceId,
      serviceId: serviceId,
      characteristicId: characteristicId,
      value: buffer,
      success(res) {
        success(res);
      },
      fail(err) {
        if (res.errCode == "10006") {
          //当前连接已断开,清空连接数据
        }
        console.log("发送失败", res);
        failure(err);
      },
    });
  }

index.vue使用分包

javascript 复制代码
this.$ble.sendWriteBLECharacteristicValue(
        deviceId, // 蓝牙地址ID
        serveiceId, // ABF0
        writeCharId, // 写入蓝牙通道 此处用ABF3
        readCharId,// 读取蓝牙返回数据通道 此处用ABF4
        buffer, // 要写入蓝牙的数据 Uint8Array
        (res) => {
          console.log("打印完成: " + JSON.stringify(res));},
        (err) => {
          console.log("打印失败: " + JSON.stringify(err));
        }
    );
相关推荐
沉默璇年38 分钟前
react中useMemo的使用场景
前端·react.js·前端框架
yqcoder44 分钟前
reactflow 中 useNodesState 模块作用
开发语言·前端·javascript
2401_882727571 小时前
BY组态-低代码web可视化组件
前端·后端·物联网·低代码·数学建模·前端框架
SoaringHeart1 小时前
Flutter进阶:基于 MLKit 的 OCR 文字识别
前端·flutter
会发光的猪。1 小时前
css使用弹性盒,让每个子元素平均等分父元素的4/1大小
前端·javascript·vue.js
天下代码客2 小时前
【vue】vue中.sync修饰符如何使用--详细代码对比
前端·javascript·vue.js
猫爪笔记2 小时前
前端:HTML (学习笔记)【1】
前端·笔记·学习·html
前端李易安2 小时前
Webpack 热更新(HMR)详解:原理与实现
前端·webpack·node.js
红绿鲤鱼2 小时前
React-自定义Hook与逻辑共享
前端·react.js·前端框架
Domain-zhuo2 小时前
什么是JavaScript原型链?
开发语言·前端·javascript·jvm·ecmascript·原型模式