iOS開發拓展篇—藍牙之CoreBlueTooth(BLE)

CoreBlueTooth

簡介:

  • 可用於第三方藍牙設備交互,設備必須支持藍牙4.0
  • iPhone的設備必須是4S或者更新
  • iPad設備必須是iPad mini或者更新
  • iOS的系統必須是iOS 6或者更新
  • 藍牙4.0以低功耗著稱,因此通常被稱爲BLE(bluetooth low energy)
  • 使用模擬器調試
    • Xcode 4.6
    • iOS 6.1
  • 應用場景
    • 運動手環
    • 智能家居
    • 拉卡拉藍牙刷卡器

核心概念

  • CBCentralManager:中心設備(用來鏈接到外部設備的管家)
  • CBPeripheralManager:外部設備(第三方的藍牙4.0設備)

開發步驟

  • 創建中心管家
// 1. 建立中心管家,而且設置代理
self.cmgr = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
  • 掃描外設(discover)
// 2. 在代理方法中掃描外部設備
 /**
  *  scanForPeripheralsWithServices :若是傳入指定的數組,那麼就只會掃描數組中對應ID的設備
  *                                   若是傳入nil,那麼就是掃描全部能夠發現的設備
  *  掃描完外部設備就會通知CBCentralManager的代理
  */
 - (void)centralManagerDidUpdateState:(CBCentralManager *)central
{
    if ([central state] == CBCentralManagerStatePoweredOn) {
        [self.cmgr scanForPeripheralsWithServices:nil options:nil];
    }
}
/**
 *  發現外部設備,每發現一個就會調用這個方法
 *  因此可使用一個數組來存儲每次掃描完成的數組
 */
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *,id> *)advertisementData RSSI:(NSNumber *)RSSI
{
    // 有可能會致使重複添加掃描到的外設
    // 因此須要先判斷數組中是否包含這個外設
    if(![self.peripherals containsObject:peripheral]){
        [self.peripherals addObject:peripheral];
    }
}
  • 鏈接外設
/**
 *  模擬開始鏈接方法
 */
- (void)start
{
    // 3. 鏈接外設
    for (CBPeripheral *ppl in self.peripherals) {
        // 掃描外設的服務
        // 這個操做應該交給外設的代理方法來作
        // 設置代理
        ppl.delegate = self;
        [self.cmgr connectPeripheral:ppl options:nil];
    }
}
  • 掃描外設中的服務和特徵
    • 服務和特徵的關係數組

      每一個藍牙4.0的設備都是經過服務和特徵來展現本身的,一個設備必然包含一個或多個服務,每一個服務下面又包含若干個特徵。代理

/**
 *  鏈接外設成功調用
 */
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{
    // 查找外設服務
    [peripheral discoverServices:nil];
}
/**
 *  發現服務就會調用代理方法
 *
 *  @param peripheral 外設
 */
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error
{
    // 掃描到設備的全部服務
    NSArray *services = peripheral.services;
    // 根據服務再次掃描每一個服務對應的特徵
    for (CBService *ses in services) {
        [peripheral discoverCharacteristics:nil forService:ses];
    }
}
  • 與外設作數據交互
    • 在指定的特徵下作相應的操做
/**
 *  發現服務對應的特徵
 */
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error
{
    // 服務對應的特徵
    NSArray *ctcs = service.characteristics;
    // 遍歷全部的特徵
    for (CBCharacteristic *character in ctcs) {
        // 根據特徵的惟一標示過濾
        if ([character.UUID.UUIDString isEqualToString:@"XMG"]) {
            NSLog(@"能夠吃飯了");
        }
    }
}
  • 斷開鏈接
/**
 *  斷開鏈接
 */
- (void)stop
{
    // 斷開全部鏈接上的外設
    for (CBPeripheral *per in self.peripherals) {
        [self.cmgr cancelPeripheralConnection:per];
    }
}
相關文章
相關標籤/搜索