gpt4 book ai didi

ios - 蓝牙连接至 iPhone 的设备

转载 作者:行者123 更新时间:2023-11-30 11:56:04 24 4
gpt4 key购买 nike

我正在开发一个应用程序,需要知道特定设备是否连接到我的手机才能执行后续任务。你能告诉我该怎么做吗?我尝试过使用 CoreBluetooth,但找不到任何可以执行此操作的函数。我不知道 CoreBluetooth 是否是合适的框架。

我需要这些数据,因为我的代码找不到我的蓝牙汽车(我想是因为没有 BLE,我不知道为什么),并且我必须通过手机的设置/蓝牙进行连接。这是代码。

import UIKit
import CoreBluetooth

class ListController: UITableViewController, CBCentralManagerDelegate, CBPeripheralDelegate{

var centralManager : CBCentralManager!

var sensorTag : CBPeripheral?


override func viewDidLoad()
{
super.viewDidLoad()
centralManager = CBCentralManager(delegate: self, queue: nil)

}

// MARK: - Bluetooth

func centralManagerDidUpdateState(_ central: CBCentralManager)
{
switch central.state
{
case .poweredOn:
debugPrint("Bluetooth on this device is currently powered on.")
centralManager.scanForPeripherals(withServices: nil, options: nil)
case .poweredOff:
debugPrint("Bluetooth on this device is currently powered off.")
case .unsupported:
debugPrint("This device does not support Bluetooth Low Energy.")
case .unauthorized:
debugPrint("This app is not authorized to use Bluetooth Low Energy.")
case .resetting:
debugPrint("The BLE Manager is resetting; a state update is pending.")
case .unknown:
debugPrint("The state of the BLE Manager is unknown.")

}
}

func centralManager(_ central: CBCentralManager, didDiscover peripheral: CBPeripheral, advertisementData: [String : Any], rssi RSSI: NSNumber)
{
if peripheral.name != nil
{
debugPrint((peripheral.name)!)
}
}

最佳答案

CoreBluetooth只能支持BLE(蓝牙4.0以上)。 CoreBluetooth没有任何蓝牙握手协议(protocol)。我的意思是您可以在手机设置屏幕中看到除 BLE 之外的那些设备并且能够连接。

核心蓝牙仅允许您使用 GATT 配置文件与蓝牙低功耗设备进行通信。但您可以通过外部附件框架进行通信,允许使用串行端口协议(protocol) (SPP) 等配置文件与“传统”蓝牙设备进行通信。但这个框架必须需要MFi

关于ios - 蓝牙连接至 iPhone 的设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47803859/

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