收藏
回答

蓝牙BLE notifyBLECharacteristicValueChange出现错误?

微信蓝牙notifyBLECharacteristicValueChange 调用出现错误

使用的是IOS 系统,使用的是官方代码片段

出现错误:{errCode: 10008, errno: 1500104, errMsg: "notifyBLECharacteristicValueChange:fail set notify failed. deviceID = 0DC7AD37-AF90-4A16-C5DC-9A036AD0BA92, serviceID = 1000F000-0000-1000-8000-00805F9B34FB, characteristicID = 1000F001-0000-1000-8000-00805F9B34FB, errMsg = The attribute could not be found."}

代码:
wx.notifyBLECharacteristicValueChange({
              deviceId,
              serviceId,
              characteristicId: item.uuid,
              state: true,
              success(res){
                console.log('notifyBLECharacteristicValueChange'+res);
              },
              fail(err){
                console.log(err);
              }
            })
回答关注问题邀请回答
收藏

1 个回答

  • CRMEB
    CRMEB
    03-01

    你试图通知的 BLE 特征(characteristic)不存在或者无法在你的蓝牙设备中找到

    03-01
    有用
    回复 1
    • 胖鼠打不过瘦虎
      胖鼠打不过瘦虎
      03-01
      但是在获取到结果中是支持notify的信息
      03-01
      回复
登录 后发表内容