iOS 蓝牙初窥

iOS蓝牙连接

因为项目需要,这几天接触了一下蓝牙相关API,自己写了一个Demo 传送门来调试,当然AppStore的LightBlue也是不错的。
好了,闲话不多说,来谈谈我这几天遇到的问题和最后是怎么解决的。


首先说一下CoreBlueTooth蓝牙框架的一些常用的API。

相关类和协议

  • CBCentralManager
  • CBPeripheral
  • CBCharacteristic
  • CBCentralManagerDelegate
  • CBPeripheralDelegate

API介绍

  • 中心设备状态改变

这个是CBCentralManager必须实现的方法

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

以下API只有在设备蓝牙开启时才可以,所以你可以像这样...

-(void)centralManagerDidUpdateState:(CBCentralManager *)central
{
    if(central.state != CBCentralManagerStatePoweredOn)
    {
        // ****
    }
}
  • 扫描设备
- (void)scanForPeripheralsWithServices:(nullable NSArray<CBUUID *> *)serviceUUIDs options:(nullable NSDictionary<NSString *, id> *)options;

第一个参数传nil表示返回所有发现的设备。

第二个参数是一个字典,可以传nil

对应的回调方法是

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *, id> *)advertisementData RSSI:(NSNumber *)RSSI;

RSSI表示设备连接的信号强度

注意:

这里发现的外围设备,如果后面需要使用它,必须要对它进行保留,官方是这样说的:

A discovered peripheral must

  •                          be retained in order to use it; otherwise, it is assumed to not be of interest and will be cleaned up by the central manager
    

取消扫描

- (void)stopScan;
  • 连接设备
- (void)connectPeripheral:(CBPeripheral *)peripheral options:(nullable NSDictionary<NSString *, id> *)options;

对应的回调方法:

连接成功:

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

连接失败:

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

取消连接

- (void)cancelPeripheralConnection:(CBPeripheral *)peripheral;
- (void)connectPeripheral:(CBPeripheral *)peripheral options:(nullable NSDictionary<NSString *, id> *)options;
  • 发现设备服务、特征、描述
查找服务
- (void)discoverServices:(nullable NSArray<CBUUID *> *)serviceUUIDs;

同样的,serviceUUIDsnil表示所有服务

查找某一服务下的特征
- (void)discoverCharacteristics:(nullable NSArray<CBUUID *> *)characteristicUUIDs forService:(CBService *)service;
查找某一特征下的描述
- (void)discoverDescriptorsForCharacteristic:(CBCharacteristic *)characteristic;

对应的回调函数:

发现服务
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(nullable NSError *)error;
发现特征
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(nullable NSError *)error;
发现描述
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverDescriptorsForCharacteristic:(CBCharacteristic *)characteristic error:(nullable NSError *)error;
  • 特征值变化通知
- (void)setNotifyValue:(BOOL)enabled forCharacteristic:(CBCharacteristic *)characteristic;

回调

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

如果开启通知,当连接设备的当前特征的值发生变化时,就会调用函数:

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

调用下面的方法也是可以的,但是如果该特性不可读,也就是characteristic.properties & CBCharacteristicPropertyRead,那么在回调函数里面会产生一个错误

- (void)readValueForCharacteristic:(CBCharacteristic *)characteristic;
  • 读值和写值

读值:

读取特征的值
- (void)readValueForCharacteristic:(CBCharacteristic *)characteristic;
回调
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(nullable NSError *)error;
读取特征描述的值
- (void)readValueForDescriptor:(CBDescriptor *)descriptor;
回调
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForDescriptor:(CBDescriptor *)descriptor error:(nullable NSError *)error

写值:

写特征的值
- (void)writeValue:(NSData *)data forCharacteristic:(CBCharacteristic *)characteristic type:(CBCharacteristicWriteType)type
回调
- (void)peripheral:(CBPeripheral *)peripheral didWriteValueForCharacteristic:(CBCharacteristic *)characteristic error:(nullable NSError *)error
写特征描述的值
- (void)writeValue:(NSData *)data forDescriptor:(CBDescriptor *)descriptor
回调
- (void)peripheral:(CBPeripheral *)peripheral didWriteValueForDescriptor:(CBDescriptor *)descriptor error:(nullable NSError *)error

写值之前确保特征是可写的,如果写值的类型是CBCharacteristicWriteWithResponse的话,才会调用回调函数。

  • 设备信号强度

外围设备有一个RSSI属性,但是现在被弃用了,改用回调函数代替了。

- (void)peripheral:(CBPeripheral *)peripheral didReadRSSI:(NSNumber *)RSSI error:(nullable NSError *)error NS_AVAILABLE(NA, 8_0);

好了API大致的介绍了一下,还有一些没有介绍到的,大家可以自己去了解一下。

遇到的问题

  1. 读取特征的值的时候,在没有可读类型的特征的时候,会报错。
  2. 在还未连接到外围设备的情况下,更新设备信号强度。

解决方法:

  • 1.原来是自己开启了广播,同时又调用了读值的方法,虽然这两种方式都会调用回调函数,但是特征并不可读。0..0

This method is invoked after a @link readValueForCharacteristic: @/link call, or upon receipt of a notification/indication.

忽略了一个or

  • 2.本意是想模仿LightBlue App信号强度的更新,在Log中看到设备的信号强度在没有连接的情况下就在更新了。但是readRSSI方法明确表明是要在已连接状态下才能读取,回调方法也才会响应。在委托方法:
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *, id> *)advertisementData RSSI:(NSNumber *)RSSI;

中能拿到RSSI,但是却没有实时更新。经过几番摸索,在扫描外设的方法中看到了希望

- (void)scanForPeripheralsWithServices:(nullable NSArray<CBUUID *> *)serviceUUIDs options:(nullable NSDictionary<NSString *, id> *)options;

第二个参数options之前传的是nil,在CBCentralManagerScanOptionAllowDuplicatesKey这个Key中看到了这样一段话

This can be useful in specific situations, such as making a connection based on a peripheral's RSSI, but may have an adverse affect on battery-life and application performance

问题得到解决,修改后的扫描方法

[_centralManager scanForPeripheralsWithServices:nil options:@{CBCentralManagerScanOptionAllowDuplicatesKey : @(YES)}];

这样就可以在回调方法中拿到实时的信号强度了。

好了,就说这么多了,后续再有遇到问题,会继续更新的...

Demo地址

代码写的不好,还望见谅 0.0

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

推荐阅读更多精彩内容