低功耗
著稱,因此通常被稱爲BLE(bluetooth low energy)// 1. 建立中心管家,而且設置代理 self.cmgr = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
// 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]; } }