藍牙

轉載請註明出處ios

http://blog.csdn.net/pony_maggie/article/details/26740237
編程


做者:小馬xcode


IOS學習也一段時間了,該上點乾貨了。前段時間研究了一下IOS藍牙通信相關的東西,把研究的一個成果給你們分享一下。app

 

一 項目背景框架

簡單介紹一下作的東西,設備是一個金融刷卡器,經過藍牙與iphone手機通信。手機端的app經過發送不一樣的指令(經過藍牙)控制刷卡器執行一些動做,好比讀磁條卡,讀金融ic卡等。上幾張圖容易理解一些:iphone

 


            

 

看了上面幾張圖,你應該大概瞭解這是個什麼東東了。函數

 

二 IOS 藍牙介紹oop

 

藍牙協議自己經歷了從1.0到4.0的升級演變, 最新的4.0以其低功耗著稱,因此通常也叫BLE(Bluetoothlow energy)。學習

 

iOS 有兩個框架支持藍牙與外設鏈接。一個是 ExternalAccessory。從ios3.0就開始支持,也是在iphone4s出來以前用的比較多的一種模式,可是它有個很差的地方,External Accessory須要拿到蘋果公司的MFI認證。測試

 

另外一個框架則是本文要介紹的CoreBluetooth,在iphone4s開始支持,專門用於與BLE設備通信(由於它的API都是基於BLE的)。這個不須要MFI,而且如今不少藍牙設備都支持4.0,因此也是在IOS比較推薦的一種開發方法。

 

三 CoreBluetooth介紹

 

CoreBluetooth框架的核心實際上是兩個東西,peripheral和central, 能夠理解成外設和中心。對應他們分別有一組相關的API和類,以下圖所示:

 

 

 若是你要編程的設備是central那麼你大部分用到,反之亦然。在咱們這個示例中,金融刷卡器是peripheral,咱們的iphone手機 是central,因此我將大部分使用上圖中左邊部分的類。使用peripheral編程的例子也有不少,好比像用一個ipad和一個iphone通 訊,ipad能夠認爲是central,iphone端是peripheral,這種狀況下在iphone端就要使用上圖右邊部分的類來開發了。

 

四 服務和特徵

 

有個概念有必要先說明一下。什麼是服務和特徵呢(service and characteristic)?

 

每一個藍牙4.0的設備都是經過服務和特徵來展現本身的,一個設備必然包含一個或多個服務,每一個服務下面又包含若干個特徵。特徵是與外界交互的最小單位。好比說,一臺藍牙4.0設備,用特徵A來描述本身的出廠信息,用特徵B來與收發數據等。

 

服務和特徵都是用UUID來惟一標識的,UUID的概念若是不清楚請自行google,國際藍牙組織爲一些很典型的設備(好比測量心跳和血壓的設備)規定了標準的service UUID(特徵的UUID比較多,這裏就不列舉了),以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1.    
  2. #define      BLE_UUID_ALERT_NOTIFICATION_SERVICE   0x1811  
  3.  #define     BLE_UUID_BATTERY_SERVICE   0x180F  
  4.  #define     BLE_UUID_BLOOD_PRESSURE_SERVICE   0x1810  
  5.  #define     BLE_UUID_CURRENT_TIME_SERVICE   0x1805  
  6.  #define     BLE_UUID_CYCLING_SPEED_AND_CADENCE   0x1816  
  7.  #define     BLE_UUID_DEVICE_INFORMATION_SERVICE   0x180A  
  8.  #define     BLE_UUID_GLUCOSE_SERVICE   0x1808  
  9.  #define     BLE_UUID_HEALTH_THERMOMETER_SERVICE   0x1809  
  10.  #define     BLE_UUID_HEART_RATE_SERVICE   0x180D  
  11.  #define     BLE_UUID_HUMAN_INTERFACE_DEVICE_SERVICE   0x1812  
  12.  #define     BLE_UUID_IMMEDIATE_ALERT_SERVICE   0x1802  
  13.  #define     BLE_UUID_LINK_LOSS_SERVICE   0x1803  
  14.  #define     BLE_UUID_NEXT_DST_CHANGE_SERVICE   0x1807  
  15.  #define     BLE_UUID_PHONE_ALERT_STATUS_SERVICE   0x180E  
  16.  #define     BLE_UUID_REFERENCE_TIME_UPDATE_SERVICE   0x1806  
  17.  #define     BLE_UUID_RUNNING_SPEED_AND_CADENCE   0x1814  
  18.  #define     BLE_UUID_SCAN_PARAMETERS_SERVICE   0x1813  
  19.  #define     BLE_UUID_TX_POWER_SERVICE   0x1804  
  20.  #define     BLE_UUID_CGM_SERVICE   0x181A  


 

固然還有不少設備並不在這個標準列表裏,好比我用的這個金融刷卡器。藍牙設備硬件廠商一般都會提供他們的設備裏面各個服務(service)和特徵(characteristics)的功能,好比哪些是用來交互(讀寫),哪些可獲取模塊信息(只讀)等。

 

 

五 實現細節

 

做爲一箇中心要實現完整的通信,通常要通過這樣幾個步驟:

 

創建中心角色—掃描外設(discover)—鏈接外設(connect)—掃描外設中的服務和特徵(discover)—與外設作數據交互(explore and interact)—斷開鏈接(disconnect)。

 

1創建中心角色

 

首先在我本身類的頭文件中要包含CoreBluetooth的頭文件,並繼承兩個協議<CBCentralManagerDelegate,CBPeripheralDelegate>,代碼以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. #import <CoreBluetooth/CoreBluetooth.h>  
  2. CBCentralManager *manager;  
  3. manager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];  


 

2掃描外設(discover)


代碼以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. [manager scanForPeripheralsWithServices:nil options:options];  


 

這個參數應該也是能夠指定特定的peripheral的UUID,那麼理論上這個central只會discover這個特定的設備,可是我實際測試發現,若是用特定的UUID傳參根本找不到任何設備,我用的代碼以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. NSArray *uuidArray = [NSArray arrayWithObjects:[CBUUID UUIDWithString:@"1800"],[CBUUID UUIDWithString:@"180A"],  
  2. [CBUUID UUIDWithString:@"1CB2D155-33A0-EC21-6011-CD4B50710777"],[CBUUID UUIDWithString:@"6765D311-DD4C-9C14-74E1-A431BBFD0652"],nil];  
  3.        
  4. [manager scanForPeripheralsWithServices:uuidArray options:options];  

 

 

目前不清楚緣由,懷疑和設備自己在的廣播包有關。

 

3鏈接外設(connect)

當掃描到4.0的設備後,系統會經過回調函數告訴咱們設備的信息,而後咱們就能夠鏈接相應的設備,代碼以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. - (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI  
  2. {  
  3.   
  4.     if(![_dicoveredPeripherals containsObject:peripheral])  
  5.         [_dicoveredPeripherals addObject:peripheral];  
  6.       
  7.     NSLog(@"dicoveredPeripherals:%@", _dicoveredPeripherals);  
  8. }  


 

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. //鏈接指定的設備  
  2. -(BOOL)connect:(CBPeripheral *)peripheral  
  3. {  
  4.     NSLog(@"connect start");  
  5.     _testPeripheral = nil;  
  6.       
  7.     [manager connectPeripheral:peripheral  
  8.                        options:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:CBConnectPeripheralOptionNotifyOnDisconnectionKey]];  
  9.       
  10.     //開一個定時器監控鏈接超時的狀況  
  11.     connectTimer = [NSTimer scheduledTimerWithTimeInterval:5.0f target:self selector:@selector(connectTimeout:) userInfo:peripheral repeats:NO];  
  12.   
  13.     return (YES);  
  14. }  

 

 

 

4掃描外設中的服務和特徵(discover)

一樣的,當鏈接成功後,系統會經過回調函數告訴咱們,而後咱們就在這個回調裏去掃描設備下全部的服務和特徵,代碼以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. - (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral  
  2. {  
  3.     [connectTimer invalidate];//中止時鐘  
  4.       
  5.     NSLog(@"Did connect to peripheral: %@", peripheral);  
  6.     _testPeripheral = peripheral;  
  7.       
  8.     [peripheral setDelegate:self];  
  9.     [peripheral discoverServices:nil];  
  10.       
  11.       
  12. }  

 

 

一個設備裏的服務和特徵每每比較多,大部分狀況下咱們只是關心其中幾個,因此通常會在發現服務和特徵的回調裏去匹配咱們關心那些,好比下面的代碼:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. - (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error  
  2. {  
  3.   
  4.       
  5.     NSLog(@"didDiscoverServices");  
  6.       
  7.     if (error)  
  8.     {  
  9.         NSLog(@"Discovered services for %@ with error: %@", peripheral.name, [error localizedDescription]);  
  10.           
  11.         if ([self.delegate respondsToSelector:@selector(DidNotifyFailConnectService:withPeripheral:error:)])  
  12.             [self.delegate DidNotifyFailConnectService:nil withPeripheral:nil error:nil];  
  13.           
  14.         return;  
  15.     }  
  16.       
  17.   
  18.     for (CBService *service in peripheral.services)  
  19.     {  
  20.           
  21.         if ([service.UUID isEqual:[CBUUID UUIDWithString:UUIDSTR_ISSC_PROPRIETARY_SERVICE]])  
  22.         {  
  23.             NSLog(@"Service found with UUID: %@", service.UUID);  
  24.             [peripheral discoverCharacteristics:nil forService:service];  
  25.             isVPOS3356 = YES;  
  26.             break;  
  27.         }  
  28.           
  29.           
  30.     }  
  31. }  

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. - (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error   
  2. {  
  3.       
  4.     if (error)   
  5.     {  
  6.         NSLog(@"Discovered characteristics for %@ with error: %@", service.UUID, [error localizedDescription]);  
  7.           
  8.         if ([self.delegate respondsToSelector:@selector(DidNotifyFailConnectChar:withPeripheral:error:)])  
  9.             [self.delegate DidNotifyFailConnectChar:nil withPeripheral:nil error:nil];  
  10.           
  11.         return;  
  12.     }  
  13.       
  14.       
  15.     for (CBCharacteristic *characteristic in service.characteristics)  
  16.     {  
  17.         if ([characteristic.UUID isEqual:[CBUUID UUIDWithString:UUIDSTR_ISSC_TRANS_TX]])  
  18.         {  
  19.             NSLog(@"Discovered read characteristics:%@ for service: %@", characteristic.UUID, service.UUID);  
  20.               
  21.             _readCharacteristic = characteristic;//保存讀的特徵  
  22.               
  23.             if ([self.delegate respondsToSelector:@selector(DidFoundReadChar:)])  
  24.                 [self.delegate DidFoundReadChar:characteristic];  
  25.               
  26.             break;  
  27.         }  
  28.     }  
  29.   
  30.       
  31.     for (CBCharacteristic * characteristic in service.characteristics)  
  32.     {  
  33.           
  34.           
  35.         if ([characteristic.UUID isEqual:[CBUUID UUIDWithString:UUIDSTR_ISSC_TRANS_RX]])  
  36.         {  
  37.   
  38.             NSLog(@"Discovered write characteristics:%@ for service: %@", characteristic.UUID, service.UUID);  
  39.             _writeCharacteristic = characteristic;//保存寫的特徵  
  40.               
  41.             if ([self.delegate respondsToSelector:@selector(DidFoundWriteChar:)])  
  42.                 [self.delegate DidFoundWriteChar:characteristic];  
  43.               
  44.             break;  
  45.               
  46.               
  47.         }  
  48.     }  
  49.       
  50.     if ([self.delegate respondsToSelector:@selector(DidFoundCharacteristic:withPeripheral:error:)])  
  51.         [self.delegate DidFoundCharacteristic:nil withPeripheral:nil error:nil];  
  52.       
  53. }  


相信你應該已經注意到了,回調函數都是以"did"開頭的,這些函數不用你調用,達到條件後系統後自動調用。

 

 

 

5與外設作數據交互(explore and interact)

 

發送數據很簡單,咱們能夠封裝一個以下的函數:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. //寫數據  
  2. -(void)writeChar:(NSData *)data  
  3. {  
  4.     [_testPeripheral writeValue:data forCharacteristic:_writeCharacteristic type:CBCharacteristicWriteWithResponse];  
  5. }  

 


_testPeripheral和_writeCharacteristic是前面咱們保存的設備對象和能夠讀寫的特徵。

 

而後咱們能夠在外部調用它,好比固然我要觸發刷卡時,先組好數據包,而後調用發送函數:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. -(void)msrRead  
  2. {  
  3.       
  4.     unsigned char command[512] = {0};  
  5.     unsigned charchar *pTmp;  
  6.     int nSendLen = 0;  
  7.     unsigned char ucCrc[3] = {0};  
  8.       
  9.     _commandType = COMMAND_MSR_READ;  
  10.       
  11.     pTmp = command;  
  12.       
  13.       
  14.     *pTmp = 0x02;//start  
  15.     pTmp++;  
  16.       
  17.     *pTmp = 0xc1;//main cmd  
  18.     pTmp++;  
  19.       
  20.     *pTmp = 0x07;//sub cmd  
  21.     pTmp++;  
  22.       
  23.       
  24.       
  25.     nSendLen = 2;  
  26.       
  27.     *pTmp = nSendLen/256;  
  28.     pTmp++;  
  29.     *pTmp = nSendLen%256;  
  30.     pTmp++;  
  31.       
  32.     *pTmp = 0x00;//sub cmd  
  33.     pTmp++;  
  34.       
  35.     *pTmp = 0x00;//sub cmd  
  36.     pTmp++;  
  37.       
  38.       
  39.     Crc16CCITT(command+1,pTmp-command-1,ucCrc);  
  40.     memcpy(pTmp,ucCrc,2);  
  41.       
  42.       
  43.     NSData *data = [[NSData alloc] initWithBytes:&command length:9];  
  44.     NSLog(@"send data:%@", data);  
  45.     [g_BLEInstance.recvData setLength:0];  
  46.       
  47.     [g_BLEInstance writeChar:data];  
  48. }  


 

數據的讀分爲兩種,一種是直接讀(reading directly),另一種是訂閱(subscribe)。從名字也能基本理解二者的不一樣。實際使用中具體用一種要看具體的應用場景以及特徵自己的屬性。前一個好理解,特徵自己的屬性是指什麼呢?特徵有個properties字段(characteristic.properties),它是一個整型值,有以下幾個定義:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. enum {  
  2.      CBCharacteristicPropertyBroadcast = 0x01,  
  3.      CBCharacteristicPropertyRead = 0x02,  
  4.      CBCharacteristicPropertyWriteWithoutResponse = 0x04,  
  5.      CBCharacteristicPropertyWrite = 0x08,  
  6.      CBCharacteristicPropertyNotify = 0x10,  
  7.      CBCharacteristicPropertyIndicate = 0x20,  
  8.      CBCharacteristicPropertyAuthenticatedSignedWrites = 0x40,  
  9.      CBCharacteristicPropertyExtendedProperties = 0x80,  
  10.      };  

 


好比說,你要交互的特徵,它的properties的值是0x10,表示你只能用訂閱的方式來接收數據。我這裏是用訂閱的方式,啓動訂閱的代碼以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. //監聽設備  
  2. -(void)startSubscribe  
  3. {  
  4.     [_testPeripheral setNotifyValue:YES forCharacteristic:_readCharacteristic];  
  5. }  


 

當設備有數據返回時,一樣是經過一個系統回調通知我,以下所示:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. - (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error  
  2. {  
  3.           
  4.     if (error)   
  5.     {  
  6.         NSLog(@"Error updating value for characteristic %@ error: %@", characteristic.UUID, [error localizedDescription]);  
  7.           
  8.         if ([_mainMenuDelegate respondsToSelector:@selector(DidNotifyReadError:)])  
  9.             [_mainMenuDelegate DidNotifyReadError:error];  
  10.           
  11.         return;  
  12.     }  
  13.       
  14.     [_recvData appendData:characteristic.value];  
  15.       
  16.       
  17.     if ([_recvData length] >= 5)//已收到長度  
  18.     {  
  19.         unsigned charchar *buffer = (unsigned charchar *)[_recvData bytes];  
  20.         int nLen = buffer[3]*256 + buffer[4];  
  21.         if ([_recvData length] == (nLen+3+2+2))  
  22.         {  
  23.             //接收完畢,通知代理作事  
  24.             if ([_mainMenuDelegate respondsToSelector:@selector(DidNotifyReadData)])  
  25.                 [_mainMenuDelegate DidNotifyReadData];  
  26.               
  27.         }  
  28.     }  
  29.   
  30. }  


 

6 斷開鏈接(disconnect)

 

這個比較簡單,只須要一個API就好了,代碼以下:

 

[objc] view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. //主動斷開設備  
  2. -(void)disConnect  
  3. {  
  4.       
  5.     if (_testPeripheral != nil)  
  6.     {  
  7.         NSLog(@"disConnect start");  
  8.         [manager cancelPeripheralConnection:_testPeripheral];  
  9.     }  
  10.   
  11. }  

 

 

六 成果展現


上幾張效果圖,UI沒怎麼修飾,主要關注功能,實現了讀取磁道信息,與金融ic卡進行APDU交互等功能。

       



     


 

 /////////**********************************************************/////////

#import "ViewController.h"

#import <CoreBluetooth/CoreBluetooth.h>

#define kServiceUUID  @"3AF70026-AB81-4EF2-B90B-9C482B4812F1"

#define kCharacteristicUUID  @"2F5A22C7-7AB5-446A-9F94-4E9B924BE508"

@interface ViewController ()<CBCentralManagerDelegate, CBPeripheralDelegate>{

    CBCentralManager* _manager;

    NSMutableData* _data;

    CBPeripheral* _peripheral;

}

@end

 @implementation ViewController

- (void)viewDidLoad {

    //建立一箇中央

    _manager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];

}

- (void)centralManagerDidUpdateState:(CBCentralManager *)central{

    if (central.state != CBCentralManagerStatePoweredOn) {

        NSLog(@"藍牙未打開");

        return;

    }

    //開始尋找全部的服務

    [_manager scanForPeripheralsWithServices:@[[CBUUID UUIDWithString:kServiceUUID]] options:@{

                                                CBCentralManagerScanOptionAllowDuplicatesKey:@YES

                                                                                               }];

}

//尋找到服務

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI{

    //中止尋找

    [_manager stopScan];

    if (_peripheral != peripheral) {

        _peripheral = peripheral;

        //開始鏈接周邊

        [_manager connectPeripheral:_peripheral options:nil];

    }

}

//鏈接周邊成功

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral{

    [_data setLength:0];

    _peripheral.delegate = self;

    //鏈接周邊服務

    [_peripheral discoverServices:@[[CBUUID UUIDWithString:kServiceUUID]]];

}

//鏈接周邊失敗

- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error{

    NSLog(@"鏈接失敗");

}

//鏈接周邊服務

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error{

    if (error) {

        NSLog(@"錯誤的服務");

        return;

    }

    //遍歷服務

    for (CBService* service in peripheral.services) {

        if ([service.UUID isEqual:[CBUUID UUIDWithString:kServiceUUID]]) {

            //鏈接特徵

            [_peripheral discoverCharacteristics:@[[CBUUID UUIDWithString:kCharacteristicUUID]] forService:service];

        }

    }

}

 

//發現特徵

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error{

    if (error) {

        NSLog(@"鏈接特徵失敗");

        return;

    }

    //遍歷特徵

    if ([service.UUID isEqual:[CBUUID UUIDWithString:kServiceUUID]]) {

        for (CBCharacteristic* characteristic in service.characteristics) {

            if ([characteristic.UUID isEqual:[CBUUID UUIDWithString:kCharacteristicUUID]]) {

                //開始監聽特徵

                [_peripheral setNotifyValue:YES forCharacteristic:characteristic];

            }

        }

    }

}

//監聽到特徵值更新

- (void)peripheral:(CBPeripheral *)peripheral didUpdateNotificationStateForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error{

    if (error) {

        NSLog(@"特徵值出錯");

        return;

    }

    if (![characteristic.UUID isEqual:[CBUUID UUIDWithString:kCharacteristicUUID]]) {

        return;

    }

    //若是有新值,讀取新的值

    if (characteristic.isNotifying) {

        [peripheral readValueForCharacteristic:characteristic];

    }

}

 //收到新值

- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error{

    NSString* str = [[NSString alloc] initWithData:characteristic.value encoding:NSUTF8StringEncoding];

    NSLog(@"%@", str);

}

@end

 //////////////***********************//////////////////

#import "ViewController.h"

#import <CoreBluetooth/CoreBluetooth.h>

 

#define kServiceUUID  @"3AF70026-AB81-4EF2-B90B-9C482B4812F1"

#define kCharacteristicUUID  @"2F5A22C7-7AB5-446A-9F94-4E9B924BE508"

 

@interface ViewController ()<CBPeripheralManagerDelegate>{

    CBPeripheralManager* _manager;

    CBMutableService* _service;

    CBMutableCharacteristic* _characteristic;

}

@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    _manager = [[CBPeripheralManager alloc] initWithDelegate:self queue:nil];

}

- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error{

    NSLog(@"發現外設");

}

//檢測中央設備狀態

- (void)peripheralManagerDidUpdateState:(CBPeripheralManager *)peripheral{

    if (peripheral.state != CBCentralManagerStatePoweredOn){

        NSLog(@"藍牙關閉");

        return;

    }

    //開始中心服務

    [self startService];

}

//開始中心服務

- (void)startService{

    //經過uuid建立一個特徵

    CBUUID* characteristicUUID = [CBUUID UUIDWithString:kCharacteristicUUID];

    //第一個參數uuid,第二個參數決定這個特徵怎麼去用,第三個是是否加密

    _characteristic = [[CBMutableCharacteristic alloc] initWithType:characteristicUUID properties:CBCharacteristicPropertyNotify value:nil permissions:CBAttributePermissionsReadable];

    //建立一個服務uuid

    CBUUID* serviceUUID = [CBUUID UUIDWithString:kServiceUUID];

    //經過uuid建立服務

    _service = [[CBMutableService alloc] initWithType:serviceUUID primary:YES];

    //給服務設置特徵

    [_service setCharacteristics:@[_characteristic]];

    //使用這個服務

    [_manager addService:_service];

}

//添加服務後的回調

- (void)peripheralManager:(CBPeripheralManager *)peripheral didAddService:(CBService *)service error:(NSError *)error{

    //若是沒有錯誤,就能夠開始廣播服務了

    if (error == nil) {

        [_manager startAdvertising:@{

                                     CBAdvertisementDataLocalNameKey:@"PKServer",

                                     CBAdvertisementDataServiceUUIDsKey:@[[CBUUID UUIDWithString:kServiceUUID]]

                                     }];

        //[_manager updateValue:[@"pk" dataUsingEncoding:NSUTF8StringEncoding] forCharacteristic:_characteristic onSubscribedCentrals:]

    }

}

//有人鏈接成功後調用

- (void)peripheralManager:(CBPeripheralManager *)peripheral central:(CBCentral *)central didSubscribeToCharacteristic:(CBCharacteristic *)characteristic{

    NSLog(@"鏈接成功");

    [_manager updateValue:[@"pk" dataUsingEncoding:NSUTF8StringEncoding] forCharacteristic:_characteristic onSubscribedCentrals:@[central]];

}

//斷開調用

- (void)peripheralManager:(CBPeripheralManager *)peripheral central:(CBCentral *)central didUnsubscribeFromCharacteristic:(CBCharacteristic *)characteristic{

    NSLog(@"斷開");

@end

相關文章
相關標籤/搜索