gpt4 book ai didi

swift - 具有特定标识符的 CoreBluetooth 扫描外设

转载 作者:搜寻专家 更新时间:2023-11-01 05:37:31 26 4
gpt4 key购买 nike

我目前正在使用 CoreBluetooth 扫描我之前使用特定标识符连接的外围设备,然后只连接到外围设备。我知道我可以通过扫描具有服务的外围设备来做到这一点,然后在满足条件的情况下与标识符进行比较,然后按照下面的代码连接到外围设备

func discoverDevices(){
centralManager.scanForPeripheralsWithServices([CBUUID(string: "1234")], options: nil)
}
func centralManager(central: CBCentralManager, didDiscoverPeripheral peripheral: CBPeripheral, advertisementData: [String : AnyObject], RSSI: NSNumber) {
if peripheral.identifier == NSUUID(UUIDString: "AD4612DG87-7512-683D-79RT-234DFG987RUI{
self.centralManager.connectPeripheral(peripheral, options: nil)
}
}

有没有其他正确的方法可以直接扫描特定的外围设备?谢谢

最佳答案

据我所知,CoreBluetooth 不允许您直接扫描特定外围设备。

不过,您可以通过调用 retrievePeripheralsWithIdentifiers: 来检查它是否已经是系统的已知外围设备。

您只需要扫描一次并在发现后保留对 CBPeripheral 对象的引用。然后您可以稍后使用 connectPeripheral:options:

请求连接

关于swift - 具有特定标识符的 CoreBluetooth 扫描外设,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35077888/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com