use*_*141 2 macos core-bluetooth bluetooth-lowenergy swift
我一直在编写一段代码来连接表中的 BLE 设备。我能够发现设备并将它们加载到表中。在表中的行选择中,我请求连接所选设备。但是, didConnectPeripheral 从未被调用过......
有什么想法吗:
import UIKit
import CoreBluetooth
@objc protocol BLEDelegate: class {
func srgDiscoverServices(sender: BLEDiscovery, peripheral: CBPeripheral)
}
let bleDiscoverySharedInstance = BLEDiscovery()
//MARK: - UUIDS for StingRay Genessis M (SRG)
let StingRayGenesisMUUID = CBUUID (string: "346D0000-12A9-11CF-1279-81F2B7A91332") //Core UUID
//MARK: - Device and Characteristic Registers
var BLEDevices : [CBPeripheral] = [] //Device Array
var BLECharDictionary = [String: CBCharacteristic]() //Characteristic Dictionary
class BLEDiscovery: NSObject, CBCentralManagerDelegate {
private var centralManager : CBCentralManager?
weak var delegate: BLEDelegate?
override init() {
super.init()
let centralQueue = dispatch_queue_create("com.stingray", DISPATCH_QUEUE_SERIAL)
centralManager = CBCentralManager(delegate: self, queue: centralQueue)
}
// MARK: - CBCentralManager
func centralManagerDidUpdateState(central: CBCentralManager) {
switch (central.state) {
case CBCentralManagerState.PoweredOff:
print("CBCentralManagerState.PoweredOff")
case CBCentralManagerState.Unauthorized:
// Indicate to user that the iOS device does not support BLE.
print("CBCentralManagerState.Unauthorized")
break
case CBCentralManagerState.Unknown:
// Wait for another event
print("CBCentralManagerState.Unknown")
break
case CBCentralManagerState.PoweredOn:
print("CBCentralManagerState.PoweredOn")
self.startScanning()
case CBCentralManagerState.Resetting:
print("CBCentralManagerState.Resetting")
case CBCentralManagerState.Unsupported:
print("CBCentralManagerState.Unsupported")
break
}
}
// MARK: - Start scanning for StringRay devices with the appropriate UUID
func startScanning() {
if let central = centralManager {
central.scanForPeripheralsWithServices([StingRayGenesisMUUID], options: nil)
}
}
// MARK: - CB Central Manager - Did discover peripheral (follows : startScanning)
func centralManager(central: CBCentralManager, didDiscoverPeripheral peripheral: CBPeripheral, advertisementData: [String : AnyObject], RSSI: NSNumber) {
print("BLEDiscovery :: didDiscoverPeripheral :: ", peripheral.name)
//Check if new discovery and append to BLEDevices where required
if BLEDevices.contains(peripheral) {
}
else{
BLEDevices.append(peripheral)
}
//Change to BLEDevices - therefore update MianViewController, but check that the view is loaded
if MainViewController().deviceTableView != nil {
print("BLEDiscovery :: deviceTableView :: ")
MainViewController().relaodDeviceTable()
}
}
// MARK: - CB Central Manager - Connect and Disconnet BLE Devices
func connectBLEDevice (peripheral: CBPeripheral){
print("BLEDiscovery :: connectBLEDevice :: ", peripheral.name)
//Connect
let peripheralConnect : CBPeripheral = peripheral
self.centralManager!.connectPeripheral(peripheralConnect, options: nil)
}
func disconnectBLEDevice (peripheral: CBPeripheral){
print("BLEDiscovery :: disconnectBLEDevice :: ", peripheral.name)
//Disconnect
let peripheralDisconnect : CBPeripheral = peripheral
self.centralManager?.cancelPeripheralConnection(peripheralDisconnect)
}
// MARK: - CB Central Manager - Did Connect Device
func centralManager(central: CBCentralManager, didConnectPeripheral peripheral: CBPeripheral) {
print("BLEDiscovery :: didConnectPeripheral :: ", peripheral.name)
delegate?.srgDiscoverServices(self, peripheral: peripheral)
}
func centralManager(central: CBCentralManager, didDisconnectPeripheral peripheral: CBPeripheral, error: NSError?) {
//error handling
if (error != nil) {
print("!!Error - BLE Discovery - didDisconnectPeripheral - Error :: \(error)")
return
}
//On disconnect remove device from register
if let index = BLEDevices.indexOf(peripheral) {
BLEDevices.removeAtIndex(index)
}
//Change to BLEDevices - therefore update MianViewController
MainViewController().relaodDeviceTable()
}
func centralManager(central: CBCentralManager, didFailToConnectPeripheral peripheral: CBPeripheral, error: NSError?) {
//error handling
if (error != nil) {
print("!!Error - BLE Discovery - didFailToConnectPeripheral - Error :: \(error)")
return
}
//Change to BLEDevices - therefore update MianViewController
MainViewController().relaodDeviceTable()
}
}
Run Code Online (Sandbox Code Playgroud)
我知道正在从表中调用代码,因为我可以在日志窗口中观察“BLEDiscovery :: connectBLEDevice ::”,peripheral.name”。
这是我调用连接和断开连接的地方:
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
print("MainViewController :: didSelectRowAtIndexPath :: Row :: ", deviceTableView.indexPathForSelectedRow?.row)
let peripheral : CBPeripheral = BLEDevices[(deviceTableView.indexPathForSelectedRow?.row)!]
switch peripheral.state{
case .Connected:
//Disconnect as device is connected
BLEDiscovery().disconnectBLEDevice(peripheral)
case .Disconnected:
//Connect as device as disconnected
BLEDiscovery().connectBLEDevice(peripheral)
default: break
}
}
Run Code Online (Sandbox Code Playgroud)
像您这样的对象BLEDiscovery最好作为单例实现,或者您可以使用Dependency Injection,但主要的是拥有该类的单个实例。
您正在使用全局变量来实现这一点,但您在didSelectRowAtIndexPath功能中滑倒了。当你说
case .Connected:
//Disconnect as device is connected
BLEDiscovery().disconnectBLEDevice(peripheral)
Run Code Online (Sandbox Code Playgroud)
您创建一个新的本地实例,BLEDiscovery其中包含自己的实例,CBCentralManager这是您要求执行连接的中心。一旦退出 case 语句,这个局部变量BLEDiscovery就会被释放,因此永远不会调用委托方法。如果您已将外围设备数组封装在BLEDiscovery类中而不是使用全局数组,您可能会发现此错误,因为您必须BLEDiscovery在访问数组之前获取引用,并且会像数组一样抛出数组边界异常空了。
您可以将自己重组BLEDiscovery为单身人士并消除全局变量:
class BLEDiscovery: NSObject, CBCentralManagerDelegate {
static let sharedInstance = BLEDiscovery()
private static var initialised = false
private var centralManager : CBCentralManager!
weak var delegate: BLEDelegate?
//MARK: - UUIDS for StingRay Genesis M (SRG)
let stingRayGenesisMUUID = CBUUID (string: "346D0000-12A9-11CF-1279-81F2B7A91332") //Core UUID
//MARK: - Device and Characteristic Registers
var bleDevices : [CBPeripheral] = [] //Device Array
var bleCharDictionary = [String: CBCharacteristic]() //Characteristic Dictionary
override init() {
assert(!BLEDiscovery.initialised, "Illegal call to initializer - use sharedInstance")
BLEDiscovery.initialised = true
super.init()
let centralQueue = dispatch_queue_create("com.stingray", DISPATCH_QUEUE_SERIAL)
centralManager = CBCentralManager(delegate: self, queue: centralQueue)
}
// Rest of methods largely unchanged, although you should use `self.bleDevices` etc
Run Code Online (Sandbox Code Playgroud)
现在,当您想要 的实例时BLEDiscovery,您可以使用BLEDiscovery.sharedInstance例如
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
print("MainViewController :: didSelectRowAtIndexPath :: Row :: ", deviceTableView.indexPathForSelectedRow?.row)
let bleDiscovery = BLEDiscovery.sharedInstance
let peripheral = bleDiscovery.bleDevices[indexPath.row]
switch peripheral.state{
case .Connected:
//Disconnect as device is connected
bleDiscovery.disconnectBLEDevice(peripheral)
case .Disconnected:
//Connect as device as disconnected
bleDiscovery.connectBLEDevice(peripheral)
default: break
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1745 次 |
| 最近记录: |