基于iOS的藍(lán)牙開發(fā)

導(dǎo)語:

最近幾天在做一個關(guān)于藍(lán)牙與血壓計和血氧儀交互方面的東西,剛開始使用的是babybluetooth(但封裝的內(nèi)容我不會使用巷帝,于是就自己寫了一個工具類)络拌。在此帶來一些關(guān)于藍(lán)牙開發(fā)的分享。

1.藍(lán)牙基礎(chǔ)知識

CoreBluetooth框架的核心是peripheral(外設(shè))和central(中心)蜓斧,發(fā)起連接的是 central盲镶,被連接的設(shè)備為 peripheral侥袜。在移動端開發(fā)中蝌诡,我們通常使用的是中心模式溉贿。

2.中心模式的流程

  1. 建立中心
  2. 掃描外設(shè)(discover)
  3. 連接外設(shè)(connect)
  4. 掃描外設(shè)中的服務(wù)和特征(discover)
- 4.1 獲取外設(shè)的 services
- 4.2 獲取外設(shè)的 Characteristics,獲取Characteristics的值,獲 Characteristics的 Descriptor 和 Descriptor 的值
  1. 與外設(shè)做數(shù)據(jù)交互(explore and interact)
  2. 訂閱 Characteristic 的通知
  3. 斷開連接(disconnect)

3.具體實現(xiàn)代碼

創(chuàng)建中心管理者

#import <CoreBluetooth/CoreBluetooth.h>
typedef NS_ENUM(NSInteger,BDBlueToothType){
    BDBlueToothType_Oximeter = 1,//血氧儀
    BDBlueToothType_Hamnatodynamometer //血壓計
};
//藍(lán)牙搜索到的設(shè)備數(shù)組
typedef void(^PeripheralBlock)(NSMutableArray *);
//讀到的數(shù)據(jù)
typedef void(^ReadValueBlock)(NSString *);
@interface BDBlueToothHelper : NSObject<CBCentralManagerDelegate, CBPeripheralDelegate>
//外設(shè)
@property(nonatomic, strong) CBPeripheral* myPeripheral;
//中心管理工具
@property (nonatomic, strong) CBCentralManager* myCentralManager;

初始化開始掃描

self.myCentralManager = [[CBCentralManager alloc]initWithDelegate:self queue:nil options:nil];
必須實現(xiàn)的代理方法
//查看藍(lán)牙服務(wù)
- (void)centralManagerDidUpdateState:(CBCentralManager *)central{
    switch (central.state) {
        case CBCentralManagerStatePoweredOn:
            BDLog(@"藍(lán)牙已打開, 請掃描外設(shè)!");
            //搜索外設(shè)
            [self.myCentralManager scanForPeripheralsWithServices:nil options:@{CBCentralManagerOptionShowPowerAlertKey:@YES}];
            break;
        case CBCentralManagerStatePoweredOff:
            BDLog(@"藍(lán)牙關(guān)閉...");
            break;
        default:
            break;
    }
}

#pragma mark 搜索到設(shè)備之后會調(diào)用代理方法
- (void)centralManager:(CBCentralManager *)central // 中心管理者
 didDiscoverPeripheral:(CBPeripheral *)peripheral // 外設(shè)
     advertisementData:(NSDictionary *)advertisementData // 外設(shè)攜帶的數(shù)據(jù)
                  RSSI:(NSNumber *)RSSI{ // 外設(shè)發(fā)出的藍(lán)牙信號強度
    BDLog(@"已發(fā)現(xiàn) peripheral: %@ rssi: %@, name: %@ advertisementData: %@", peripheral, RSSI, peripheral.name, advertisementData);
    //這里可以做一些過濾操作
    if ([_myPeripherals containsObject:peripheral]) {
        
    }else
    {
        //找到的設(shè)備必須持有它浦旱,否則CBCentralManager中也不會保存peripheral
        [_myPeripherals addObject:peripheral];
    }
   //將搜索的設(shè)備回調(diào)給控制器的tableview使用宇色,刷新表格
    if (self.perlists) {
        self.perlists(_myPeripherals);
    }
    
}

建立連接

//self.myPeripheral在cell點擊時的賦值
[self.myCentralManager connectPeripheral:self.myPeripheral options:nil];

一個主設(shè)備最多能連7個外設(shè),每個外設(shè)最多只能給一個主設(shè)備連接,連接成功颁湖、失敗宣蠕、斷開都會進(jìn)入到相應(yīng)的代理

#pragma mark 連接外設(shè)成功
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral{
    BDLog(@"成功外設(shè)連接");
    //設(shè)置外設(shè)的代理
    [self.myPeripheral setDelegate:self];
    //外設(shè)發(fā)現(xiàn)服務(wù),傳nil代表不過濾
    // 這里會觸發(fā)外設(shè)的代理方法 - (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error
    [self.myPeripheral discoverServices:nil];
}

#pragma mark 掉線時調(diào)用 丟失連接
- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"藍(lán)牙連接已斷開" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"關(guān)閉", nil];
    [alert show];
    [self closeConnect];
    BDLog(@"丟失連接");
}

#pragma mark 連接外設(shè)失敗
- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error{
    BDLog(@"連接外設(shè)失敗%@", error);
}

掃描服務(wù)和特征

#pragma mark 發(fā)現(xiàn)服務(wù)
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error{
    BDLog(@"發(fā)現(xiàn)服務(wù)!");
    for(CBService* s in peripheral.services){
        NSLog(@"%d :服務(wù) UUID: %@(%@)", i, s.UUID.data, s.UUID);
        //掃描每個service的Characteristics,掃描到后會進(jìn)入方法: -(void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error
        [peripheral discoverCharacteristics:nil forService:s];
        [self.nServices addObject:s];
    }
}

#pragma mark 發(fā)現(xiàn)外設(shè)服務(wù)里的特征的時候調(diào)用的代理方法
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error{
    for(CBCharacteristic* c in service.characteristics){
        BDLog(@"特征 UUID: %@ (%@)", c.UUID.data, c.UUID);
        
        if (self.toothType == BDBlueToothType_Oximeter) {//血氧儀
            if([c.UUID isEqual:[CBUUID UUIDWithString:@"FFF1"]]){
                self.writeCharacteristic = c;
                
                BDLog(@"找到WRITE : %@", c);
            }else if([c.UUID isEqual:[CBUUID UUIDWithString:@"FFF4"]]){
                self.readCharacteristic = c;
                
                [self.myPeripheral setNotifyValue:YES forCharacteristic:c];
                [self.myPeripheral readValueForCharacteristic:c];
                NSLog(@"找到READ : %@", c);
            }
        }else if (self.toothType == BDBlueToothType_Hamnatodynamometer){//血壓計
            if ([c.UUID isEqual:[CBUUID UUIDWithString:@"FFE1"]]) {
                BDLog(@"血壓計 %zd - %@",c.properties,c.descriptors);
                self.readCharacteristic = c;
                self.writeCharacteristic = c;
                [self.myPeripheral setNotifyValue:YES forCharacteristic:c];
                [self.myPeripheral readValueForCharacteristic:c];
            }
        }
        
    }
}

與外設(shè)進(jìn)行數(shù)據(jù)交互

#pragma mark 獲取外設(shè)發(fā)來的數(shù)據(jù),不論是read和notify,獲取數(shù)據(jù)都從這個方法中讀取
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error{
    [peripheral readRSSI];
    
    NSData* data = characteristic.value;
    
    if (!data.length) {
        return;
    }
    
    NSString* value = [self hexadecimalString:data];
    
    if (self.toothType == BDBlueToothType_Oximeter) { //血氧儀
        
        if([characteristic.UUID isEqual:[CBUUID UUIDWithString:@"FFF4"]]){
            if (value.length) {
                self.readValue(value);
            }
//            BDLog(@"characteristic : %@, data : %@, value : %@", characteristic, data, value);
        }

    }else if (self.toothType == BDBlueToothType_Hamnatodynamometer){ //血壓計
        
        if ([characteristic.UUID isEqual:[CBUUID UUIDWithString:@"FFE1"]]) {
            if (value.length) {
                self.readValue(value);
            }
//            BDLog(@"characteristic : %@, data : %@, value : %@", characteristic, data, value);
        }
    }
}

//中心讀取外設(shè)實時數(shù)據(jù)
- (void)peripheral:(CBPeripheral *)peripheral didUpdateNotificationStateForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error{
    if(error){
        BDLog(@"Error changing notification state: %@", error.localizedDescription);
    }
    
    if(characteristic.isNotifying){
        [peripheral readValueForCharacteristic:characteristic];
    }else{
        BDLog(@"Notification stopped on %@. Disconnting", characteristic);
        [self.myCentralManager cancelPeripheralConnection:self.myPeripheral];
    }
}

//向peripheral中寫入數(shù)據(jù)
- (void)writeToPeripheral:(NSString *)data{
    if(!_writeCharacteristic){
        BDLog(@"writeCharacteristic is nil!");
        return;
    }
    NSData* value = [self dataWithHexstring:data];
    
    [_myPeripheral writeValue:value forCharacteristic:_writeCharacteristic type:CBCharacteristicWriteWithResponse];
}

//向peripheral中寫入數(shù)據(jù)后的回調(diào)函數(shù)
- (void)peripheral:(CBPeripheral*)peripheral didWriteValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error{
    if (error) {
        BDLog(@"error %@",error);
    }
    BDLog(@"write value success : %@", characteristic);
}

用到的私有方法

//將傳入的NSData類型轉(zhuǎn)換成NSString并返回
- (NSString*)hexadecimalString:(NSData *)data{
    NSString* result;
    const unsigned char* dataBuffer = (const unsigned char*)[data bytes];
    if(!dataBuffer){
        return nil;
    }
    NSUInteger dataLength = [data length];
    NSMutableString* hexString = [NSMutableString stringWithCapacity:(dataLength * 2)];
    for(int i = 0; i < dataLength; i++){
        [hexString appendString:[NSString stringWithFormat:@"%02lx", (unsigned long)dataBuffer[i]]];
    }
    result = [NSString stringWithString:hexString];
    return result;
}

//將傳入的NSString類型轉(zhuǎn)換成NSData并返回
- (NSData*)dataWithHexstring:(NSString *)hexstring{
    NSMutableData* data = [NSMutableData data];
    int idx;
    for(idx = 0; idx + 2 <= hexstring.length; idx += 2){
        NSRange range = NSMakeRange(idx, 2);
        NSString* hexStr = [hexstring substringWithRange:range];
        NSScanner* scanner = [NSScanner scannerWithString:hexStr];
        unsigned int intValue;
        [scanner scanHexInt:&intValue];
        [data appendBytes:&intValue length:1];
    }
    return data;
}

相關(guān)的藍(lán)牙文檔

屏幕快照 2017-07-24 上午11.43.21.png

參考文檔

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末甥捺,一起剝皮案震驚了整個濱河市抢蚀,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌镰禾,老刑警劉巖皿曲,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異吴侦,居然都是意外死亡屋休,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進(jìn)店門备韧,熙熙樓的掌柜王于貴愁眉苦臉地迎上來劫樟,“玉大人,你說我怎么就攤上這事织堂〉蓿” “怎么了?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵易阳,是天一觀的道長附较。 經(jīng)常有香客問我,道長闽烙,這世上最難降的妖魔是什么翅睛? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任声搁,我火速辦了婚禮,結(jié)果婚禮上捕发,老公的妹妹穿的比我還像新娘疏旨。我一直安慰自己,他們只是感情好扎酷,可當(dāng)我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布檐涝。 她就那樣靜靜地躺著,像睡著了一般法挨。 火紅的嫁衣襯著肌膚如雪谁榜。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天凡纳,我揣著相機與錄音窃植,去河邊找鬼。 笑死荐糜,一個胖子當(dāng)著我的面吹牛巷怜,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播暴氏,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼延塑,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了答渔?” 一聲冷哼從身側(cè)響起关带,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎沼撕,沒想到半個月后宋雏,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡端朵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年好芭,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片冲呢。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡舍败,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出敬拓,到底是詐尸還是另有隱情邻薯,我是刑警寧澤,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布乘凸,位于F島的核電站厕诡,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏营勤。R本人自食惡果不足惜灵嫌,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一壹罚、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧寿羞,春花似錦猖凛、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至玖院,卻和暖如春菠红,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背难菌。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工试溯, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人扔傅。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓耍共,卻偏偏與公主長得像烫饼,于是被迫代替她去往敵國和親猎塞。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,877評論 2 345

推薦閱讀更多精彩內(nèi)容