2017-09-22 62 views
2

我試圖從我的iOS應用程序連接到的BLE設備中發現服務,但是當我的didDiscoverServices函數被調用時,外圍服務數組爲空。Swift 3 Core藍牙無法發現服務

應用程序連接到設備,運行peripheral.discoverServices(nil),然後調用didDiscoverServices函數,但沒有返回服務。

我已經在線閱讀了一些藍牙相關的答案和其他示例,並且盡我所知,我的代碼與它應該是什麼不同,除非它不工作。我覺得我一定錯過了某個地方,但我不知道是什麼。

我已經添加了我的控制檯日誌,下面是我在運行代碼時獲得的內容以及底部的藍牙代碼以供參考。

Bluetooth initialised 
BLE is powered on 
Optional("Nordic_Blinky") found at -72 
Scanning stopped 
Connect request sent 
Connected to <CBPeripheral: 0x1c0301a70, identifier = 0887CF7F-98C8-3FCF-2D10-873FFFFB2B65, name = Nordic_Blinky, state = connected> 
Discovering services 
Services -- Optional([]) and Error -- nil 

我BluetoothHandler類代碼如下

class BluetoothHandler : NSObject, CBCentralManagerDelegate, CBPeripheralDelegate { 

// MARK: Properties 
var manager: CBCentralManager! 
var targetPeripheral: CBPeripheral! 


// MARK: Shared Instance 
static let sharedInstance = BluetoothHandler() 
private override init() { 
    super.init() 
    self.startManager() 
    print("Bluetooth initialised") 
} 

// MARK: Functions 

func startManager() { 
    manager = CBCentralManager(delegate: self, queue: nil) 
} 

func centralManagerDidUpdateState(_ central: CBCentralManager) { 

    var consoleMessage = "" 
    switch (central.state) { 

    case.poweredOn: 
     consoleMessage = "BLE is powered on" 
     manager.scanForPeripherals(withServices: nil, options: nil) 

    case.poweredOff: 
     consoleMessage = "BLE is powered off" 

    case.resetting: 
     consoleMessage = "BLE Resetting" 

    case.unknown: 
     consoleMessage = "BLE state unknown" 

    case.unsupported: 
     consoleMessage = "Device not supported by BLE" 

    case.unauthorized: 
     consoleMessage = "BLE not authorised" 
    } 
    print("\(consoleMessage)") 

} 

func centralManager(_ central: CBCentralManager, didDiscover peripheral: CBPeripheral, advertisementData: [String : Any], rssi RSSI: NSNumber) { 

    if (peripheral.name == "Nordic_Blinky") { 

     print("\(String(describing: peripheral.name)) found at \(RSSI)") 
     self.stopScan() 

     if targetPeripheral != peripheral { 

      targetPeripheral = peripheral 
      targetPeripheral!.delegate = self 

      manager.connect(targetPeripheral, options: nil) 
      print("Connect request sent") 
     } 

    } 

    else if (peripheral.name != nil) { 
     print("\(String(describing: peripheral.name))") 
    } 
} 

func centralManager(_ central: CBCentralManager, didConnect peripheral: CBPeripheral) { 
    print("Connected to \(peripheral)") 
    peripheral.delegate = self 
    peripheral.discoverServices(nil) 
    print("Discovering services") 
} 

func centralManager(_ central: CBCentralManager, didFailToConnect peripheral: CBPeripheral, error: Any) { 
    print("Connection failed", error) 
} 

func centralManager(_ central: CBCentralManager, didDisconnect peripheral: CBPeripheral) { 

    if self.targetPeripheral != nil { 
     self.targetPeripheral!.delegate = nil 
     self.targetPeripheral = nil 
    } 
    print("Connection disconnected") 
    self.startManager() 
} 

func peripheral(_ peripheral: CBPeripheral, didDiscoverServices error: Error?) { 
    print("Services -- \(peripheral.services) and Error -- \(error)") 

    if let services = peripheral.services { 
     for service in services { 
      peripheral.discoverCharacteristics(nil, for: service) 
     } 
    } 
} 
+0

像BlueLight.app這樣的應用程序是否找到服務? – Larme

+0

@Larme是一個Android應用程序連接並獲得設備上的所有服務 – AdamDWalker

+0

iOS上的BlueLight.app? – Larme

回答

0

試試這個:SWIFT 3

如果你的外設(BLE裝置)有服務,那麼在日誌打印。

func peripheral(_ peripheral: CBPeripheral, didDiscoverServices error: Error?) { 

    if let services = peripheral.services as [CBService]!{ 

     for service in services{ 

      peripheral.discoverCharacteristics(nil, for: service) 
     } 
    } 
    print("==>",peripheral.services!) 
} 

func peripheral(_ peripheral: CBPeripheral, didDiscoverCharacteristicsFor service: CBService, error: Error?) { 

    for newChar: CBCharacteristic in service.characteristics!{ 

     print(newChar) 
    } 
} 
+0

我已經試圖打印服務來記錄,但它只打印一個空數組,因爲沒有服務(請參閱代碼和控制檯日誌) – AdamDWalker