为什么我的iPhone无法将数据发送到BLE?

时间:2018-11-21 14:18:12

标签: swift bluetooth bluetooth-lowenergy

我正试图了解此页面上的代码:

https://learn.adafruit.com/crack-the-code/overview

但是问题是,每当我尝试将手机中的任何内容发送到BLE时,都会出现以下错误: “发现服务时出错:错误” 负责发现错误的代码部分(我认为)如下:

    func peripheral(_ peripheral: CBPeripheral, didWriteValueFor characteristic: CBCharacteristic, error: Error?) {
    guard error == nil else {
        print("Error discovering services: error")
        return
    }
    print("Message sent")
}

我已经阅读了很多有关该主题的文章,但是找不到解决该问题的方法。

0 个答案:

没有答案