CoreBluetooth- iOS蓝牙开发

一、蓝牙基础知识

(一)常见简称

  • MFI make for ipad ,iphone, itouch 专们为苹果设备制作的设备,开发使用ExternalAccessory 框架(认证流程貌似挺复杂的,而且对公司的资质要求较高),详见:关于MFi认证你所必须要知道的事情

  • BLE buletouch low energy,蓝牙4.0设备因为低耗电,所以也叫做BLE,开发使用CoreBluetooth 框架

(二)两种模式

  • CBCentralMannager 中心模式 :以手机(app)作为中心,连接其他外设的场景(主要写此种该模式的应用方法,因为我只会这种模式的)
  • CBPeripheralManager 外设模式:使用手机作为外设连接其他中心设备操作的场景

(三)CBPeripheral 、CBService、CBCharacteristic

三者关系:


CoreBluetooth.png

一个CBPeripheral有一个或者多个CBService,而每一个CBService有一个或者多个CBCharacteristic,通过可写的CBCharacteristic发送数据,而每一个CBCharacteristic有一个或者多个Description用于描述characteristic的信息或属性

(四)关于蓝牙设备唯一表示的问题

在蓝牙开发中,iOS 没有直接提供获取mac 地址的方法(Android 是可以直接获取的),所以在iOS蓝牙开发中就有唯一标识的问题了

当我们使用CoreBluetooth系统框架进行蓝牙开发的时候,有时候某种功能需要和指定的蓝牙设备进行操作,这就需要我们拿到蓝牙设备的唯一标识,来确定是哪一台设备,先看下一当我们扫描到的蓝牙设备时,所能拿到的属性:

蓝牙设备的属性1.png
蓝牙设备的属性2.png

针对于不同的业务需求,我们在进行连接操作的时候,不要指定具体那一台设备的,那么就可以使用identifier来作为唯一标识
** 这里有一个坑要注意: 对于同一台蓝牙设备,不同手机进行扫描,然后读取的 identifier是不同的**

而对于需要指定的到蓝牙设备的解决办法:

  • 将mac 地址放在蓝牙设备的广播数据当中,然后在广播的时候,将mac地址一广播的形式发出来
  • 将 mac 地址写在某一个蓝牙特征通道中,当我们连接蓝牙设备之后,通过某一个特征通道获取mac地址
  • 我们可以通过蓝牙设备出厂设备 或者 后期手动修改蓝牙设备的name,作为唯一标识

二、CoreBluetooth常用到的方法

自己封装了一个蓝牙单例的类,对蓝牙开发中常用到的方法写了较为详细的解释,代码如下:

+ (instancetype)shared {
    static SLBluetoothCentralManager *instance;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        instance = [[self alloc] init];
    });
    return instance;
}

/**
 初始化 centralManager
 */
- (instancetype)init {
    self = [super init];
    if (self) {
        self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
    }
    return self;
}

/**
 扫描周周的设备
 */
- (void) sacnNearPerpherals {
    TCLog(@"开始扫描四周的设备");
    /**
     1.第一个参数为Services的UUID(外设端的UUID) 不能为nil
     2.第二参数的CBCentralManagerScanOptionAllowDuplicatesKey为已发现的设备是否重复扫描,如果是同一设备会多次回调
     */
    [self.centralManager scanForPeripheralsWithServices:@[[CBUUID UUIDWithString:kServiceUUID]] options:@{CBCentralManagerScanOptionAllowDuplicatesKey : @NO}];
}

#pragma mark - CBCentralManagerDelegate

/**
 检查App设备蓝牙是否可用

 @param central 中心设备管理器
 */
- (void)centralManagerDidUpdateState:(CBCentralManager *)central {
    switch (central.state){
            
        case CBCentralManagerStatePoweredOn://蓝牙已打开,开始扫描外设
            [self sacnNearPerpherals];
            break;
            
        case CBCentralManagerStateUnsupported:
            [MBProgressHUD showMessage:@"您的设备不支持蓝牙或蓝牙4.0" toView:nil];
            break;
            
        case CBCentralManagerStateUnauthorized:
             [MBProgressHUD showMessage:@"未授权打开蓝牙" toView:nil];
            break;
            
        case CBCentralManagerStatePoweredOff://蓝牙未打开,系统会自动提示打开,所以不用自行提示
            
        default:
            break;
    }
}

/**
 发现外围设备的代理

 @param central 中心设备
 @param peripheral 外围设备
 @param advertisementData 特征数据
 @param RSSI 信号强度
 */
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *,id> *)advertisementData RSSI:(NSNumber *)RSSI {
    NSMutableString* nsmstring=[NSMutableString stringWithString:@"\n"];
    [nsmstring appendString:@"----发现外设----\n"];
    [nsmstring appendString:@"Peripheral Info:\n"];
    [nsmstring appendFormat:@"NAME: %@\n",peripheral.name];
    [nsmstring appendFormat:@"UUID(identifier): %@\n",peripheral.identifier];
    [nsmstring appendFormat:@"RSSI: %@\n",RSSI];
    [nsmstring appendFormat:@"adverisement:%@\n",advertisementData];
    TCLog(@"%@",nsmstring);
    
    NSArray *serviceUUIDArr = advertisementData[@"kCBAdvDataServiceUUIDs"];
    
    for (CBUUID *serviceUUID in serviceUUIDArr) {
        // 判断外设是否有需要的服务(是否是当前APP对应的外设)<此项目应该判断外设的名字>
        if ([serviceUUID.UUIDString isEqualToString:kServiceUUID]) {
            //发现符合条件的周边外设通知
            [[NSNotificationCenter defaultCenter] postNotificationName: SLDidFoundPeripheralNotification object:peripheral];
            [self connectPeripheral:peripheral];
        }
    }
}

/// 连接指定的设备
- (void)connectPeripheral:(CBPeripheral *)peripheral {
    //这个引用不可以省略
    self.peripheral = peripheral;
    TCLog(@"----尝试连接设备----\n%@", peripheral);
    [self.centralManager connectPeripheral:peripheral
                                   options:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:CBConnectPeripheralOptionNotifyOnDisconnectionKey]];
}

/// 连接外设成功的代理方法
-(void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
    TCLog(@"%@连接成功",peripheral.name);
    // 设置设备代理
    [self.peripheral setDelegate:self];
    [self.peripheral discoverServices:nil];
}

///连接外设失败的代理方法
- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error {
    TCLog(@"%@连接失败",peripheral.name);
}

///连接外设中断的代理方法
- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error {
    TCLog(@"%@连接已断开",peripheral.name);
}

#pragma mark - CBPeripheralDelegate
/// 获取外设服务的代理
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error {
    if (error) {
        TCLog(@"%@获取服务失败:%@",peripheral.name,error.localizedDescription);
        return;
    }
    
    for (CBService *service in peripheral.services) {
        // 找到对应服务
        if ([service.UUID isEqual:[CBUUID UUIDWithString:kServiceUUID]]) {
            //服务中找特征
            [service.peripheral discoverCharacteristics:@[[CBUUID UUIDWithString:kCharacteristicUUID]] forService:service];
        }
    }
}

///在获取外设服务的代理的方法中如果没有error,可以调用discoverCharacteristics方法请求周边去寻找它的服务所列出的特征,它会响应下面的方法
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error {
    if (error) {
        TCLog(@"%@获取指定特征失败:%@",peripheral.name,error.localizedDescription);
        return;
    }
    
    NSMutableString* nsmstring=[NSMutableString stringWithString:@"\n"];
    [nsmstring appendFormat:@"------在服务: %@ 中发现 %lu 个特征 ------\n",service.UUID,(unsigned long)service.characteristics.count];
    
    for (CBCharacteristic *characteristic in service.characteristics) {
        [nsmstring appendFormat:@"%@\n",characteristic];
        [nsmstring appendFormat:@"\n"];
        TCLog(@"%@",nsmstring);
        
        self.peripheral = peripheral;
        self.writeCharacteristic = characteristic;
        // 连接成功,开始配对 - 发送第一次校验的数据
        [self willPairToPeripheral:peripheral];
    }
}

///已连接上设备,开始进行配对
- (void)willPairToPeripheral:(CBPeripheral *)peripheral{
    //发送第一次校验的数据
    NSData *firstAuthData = [SLCheckoutDataUtils firstRandomData];
    [[SLBluetoothCentralManager shared] sendCommandData:firstAuthData];
}

/// 写入数据方法
- (void)sendCommandData:(NSData *)data {
    if(self.writeCharacteristic.properties & CBCharacteristicPropertyWrite || self.writeCharacteristic.properties & CBCharacteristicPropertyWriteWithoutResponse) {
        [self.peripheral writeValue:data forCharacteristic:self.writeCharacteristic type:CBCharacteristicWriteWithResponse];
        TCLog(@"----写入命令---->:cmd:%@\n\n", data);
    } else {
        TCLog(@"该字段不可写!");
    }
}

/// 写入数据后的回调方法
- (void)peripheral:(CBPeripheral *)peripheral didWriteValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error {
    if (error) {
        NSLog(@"写入失败: %@",[error localizedDescription]);
        return;
    }
    NSLog(@"写入成功-->%@",characteristic.value);
    [peripheral readValueForCharacteristic:characteristic];
}

/// 获取到特征的值时回调 -- 获取回调数据
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error {
    if (error) {
        TCLog(@"特征UUID:%@回调数据错误:%@", characteristic.UUID.UUIDString,error.localizedDescription);
        return;
    }
    
    TCLog(@"------特征收到回调数据------> uuid:%@ \nvalue: %@\n\n",characteristic.UUID,characteristic.value);
    NSString *result = [NSString jkt_hexStringFromData:characteristic.value];

    if ([result hasPrefix:SLDidFirstPairSuccessCommand]) {//第一次配对成功
        NSData *secondAuthData = [SLCheckoutDataUtils secondVerifyData:characteristic.value];
        [[SLBluetoothCentralManager shared] sendCommandData:secondAuthData];
    }
    
    if ([result hasPrefix:SLDidSecondPairSuccessCommand]) {//第二次配对成功
        TCLog(@"正式建立的连接-----------");
        //开锁测试
       [self performSelector:@selector(sendOpenLockCmd) withObject:nil afterDelay:3.0];
    }
}

对于常用的方法,都写了注释,希望对于第一蓝牙开发的小伙伴有帮助!!

三、BabyBluetooth

推荐这个库,很🐂, 对CoreBluetooth进行了封装,如果你不喜欢系统的各种代理方法,那么可以试一试这个库,也许你会喜欢

如果有些的不对的,不吝指教!!!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,658评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,482评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,213评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,395评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,487评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,523评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,525评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,300评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,753评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,048评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,223评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,905评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,541评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,168评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,417评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,094评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,088评论 2 352

推荐阅读更多精彩内容