Part2 中心设备部分开发
- 从外设开发中基本可以窥探出一个蓝牙设备的基本轮廓,大概可以看成是一个包了三层壳的黑匣子
- 为了不混淆概念,你可以将中心设备理解为iPhone,外设理解为蓝牙耳机等(当然iPhone也可以作为外设,但是在你还没有完全搞清这些概念之前,先以我前面说的方式去理解比较好)
- 作为iOS开发者,在中心与设备两者之间,大概还是以中心为主要开发的目标,让手机连接各种你想连接的蓝牙设备
- 下面就用代码一一拨开这三层壳,来触及蓝牙设备的核心,最后达到与其交互的目的
- 在所有工作开始之前,当然是引入苹果自带的CoreBluetooth.framework
1 找到你的蓝牙设备(拨开第一层壳)
1.1 创建中心管理器
//延长centralManager生命周期
@property(nonatomic,strong)CBCentralManager *centralManager;
//初始化CBCentralManager 遵守CBCentralManagerDelegate
self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:dispatch_get_main_queue()];
1.2 实现代理方法
//更新中心的状态时会调用的方法
-(void)centralManagerDidUpdateState:(CBCentralManager *)central{
//此时你可以搭个顺风车,让你的中心去扫描一下周围有没有你想要的蓝牙设备
if (self.centralManager.state == CBManagerStatePoweredOn) {
//scanForPeripheralsWithServices中
//第一个参数为nil时可以搜索到所有的蓝牙设备
//第二个参数有两个选项
//CBCentralManagerScanOptionAllowDuplicatesKey:文档中建议使用@(NO),否则会搜到重复设备,本人试验后也的确如此,文档中还提到会提高用电量,然后这个键的默认值就是@(NO),所以,不知这个选项有何用处
//CBCentralManagerScanOptionSolicitedServiceUUIDsKey:可以放入一个你想搜寻的Service_UUID的数组,第一个参数就可以放一个Service_UUID数组,后面也一样,一个诡异的方法...
[central scanForPeripheralsWithServices:@[[CBUUID UUIDWithString:SERVICE_UUID]] options:nil];
}
}
1.3 接着上面scan完成后,运气好的话,你就会找到带有你手里Service_UUID的设备,此时会自动回调以下方法
-(void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *,id> *)advertisementData RSSI:(NSNumber *)RSSI{
//这里苹果会丢给你三个东西
//peripheral:这就是你千辛万苦找到的设备,此时你可以丢给property持久化起来,以备后面用到
self.peripheral = peripheral;
//advertisementData:是一个字典,可以用以下key来取:(请望文生义自行脑补吧...)
//CBAdvertisementDataLocalNameKey
//CBAdvertisementDataManufacturerDataKey
//CBAdvertisementDataServiceDataKey
//CBAdvertisementDataServiceUUIDsKey
//CBAdvertisementDataOverflowServiceUUIDsKey
//CBAdvertisementDataTxPowerLevelKey
//CBAdvertisementDataIsConnectable
//CBAdvertisementDataSolicitedServiceUUIDsKey
}
2 在设备中找到你要的服务(拨开第二层壳)
2.1 连接设备
//用最开始的centralManager去Connect前一步找到的peripheral(中英文混合刚刚的...)
//后面有三个选项,具体详见文档吧...大概就是连接 断开 都会给个回调的意思吧
[self.centralManager connectPeripheral:peripheral options:@{CBConnectPeripheralOptionNotifyOnConnectionKey:@(YES),CBConnectPeripheralOptionNotifyOnDisconnectionKey:@(YES),CBConnectPeripheralOptionNotifyOnNotificationKey:@(YES)}];
//顺便说一句,上面这个代码,可以丢给一个button的action,或者跟着什么乱七八糟自动执行的回调搭个顺风车
2.2 连接外设后的回调
//上面一步连接成功后,自动执行这个回调
-(void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral{
//此时有时搭顺风车的时候,让peripheral去discover你的Service吧
//前面搜设备就要了service的UUID,这里又要,感觉有点傻
//当然最后一个参数也可填nil,你就会搜到设备上广播的所有服务...(作为一个菜🐔,拿着这些服务并没有什么卵用)
[peripheral discoverServices:@[[CBUUID UUIDWithString:SERVICE_UUID]]];
}
3 在服务中找到你要的特征(拨开第三层壳)
3.1 发现服务后,会自动执行这个回调
-(void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error{
//至此你就可以拿到最终你想要的"特征了"
//前一个参数填指定特征的UUID,后一个填服务的UUID
[peripheral discoverCharacteristics:@[[CBUUID UUIDWithString:CHARACTERISTICS_UUID]] forService:peripheral.services[indexPath.row]];
}
3.2 最终找到特征会自动执行这个回调
-(void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error{
// 此时记录下这个特征
CBCharacteristic *characteristic = service.characteristics.lastObject;
//顺便读一下这个特征
[peripheral readValueForCharacteristic:characteristic];
}
3.3 读取特征后的回调
-(void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error{
//此时可以更新你获得的特征
}
至此三层壳剥完,其实只是一个开始
s_f0e1e870020c6a70d327d281d8b9497f-2.jpg