CoreBlueTooth框架初步应用

首先导入库#import<CoreBluetooth/CoreBluetooth.h>

遵循代理:<CBCentralManagerDelegate,CBPeripheralDelegate>

声明变量:

@property(nonatomic,strong)CBCentralManager*bluetoothManager;

@property(nonatomic,strong)CBPeripheralManager*manager;

1、创建中心设备并设置代理:

self.bluetoothManager=[[CBCentralManageralloc]initWithDelegate:self queue:dispatch_get_main_queue()];

self.manager=[[CBPeripheralManageralloc]initWithDelegate:self queue:nil];

CBCentralManagerDelegate代理必须执行方法是查看中心设备状态是否打开蓝牙:

-(void)centralManagerDidUpdateState:(CBCentralManager

*)central{

switch (central.state) {

case CBCentralManagerStateUnknown:

break;

case CBCentralManagerStateResetting:

break;

case CBCentralManagerStateUnsupported:

break;

case CBCentralManagerStateUnauthorized:

break;

case CBCentralManagerStatePoweredOff:

break;

case CBCentralManagerStatePoweredOn:

break;

default:

break;

}

}

2、开始扫描外部设备:

[self.bluetoothManager scanForPeripheralsWithServices:nil options:@{CBCentralManagerScanOptionAllowDuplicatesKey : @NO }];

第一个参数那里表示扫描带有相关服务的外部设备,例如填写

@[[CBUUID UUIDWithString:@"需要连接的外部设备的服务的UUID"]],即表示带有需要连接的外部设备的服务的UUID的外部设备,nil表示扫描全部设备;

@{ CBCentralManagerScanOptionAllowDuplicatesKey : @NO }

NO表示不会让中心设备不断地监听外部设备的消息,YES就是能不断地监听外部设备消息。

3、一旦扫描到外部设备,就会进入协议中:

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

//找到的设备必须持有它,否则CBCentralManager中也不会保存peripheral,那么CBPeripheralDelegate中的方法也不会被调用!

在这里可以根据我们所知道的硬件设备条件来筛选所需要的设备,将其他打开蓝牙的设备排除在外。

例如:搜找硬件盒子名字为JL的设备:

@property (nonatomic, strong) NSMutableArray *peripherals;

@property(nonatomic, strong) NSMutableArray *peripheralsNameArray;

初始化数组略

if (! [self.peripherals containsObject:peripheral]) {

[self.peripherals addObject:peripheral];

}

NSArray *tempPeripherals = [self.peripheralscopy];

for (CBPeripheral *per intempPeripherals) {

if (! [self.peripheralsNameArraycontainsObject:per.name]){

if ([[per.name substringToIndex:2]isEqualToString:@"JL"]) {

[self.peripheralsNameArrayaddObject:per.name];

}else {

[self.peripherals removeObject:per];

}

}

}

}

选择某一搜索到的特定设备进行连接

LGAlertView *alert= [LGAlertView alertViewWithTitle:@"请选择您的设备"

message:@"" style:LGAlertViewStyleActionSheet buttonTitles:self.peripheralsNameArray

cancelButtonTitle:@"取消"destructiveButtonTitle:nil actionHandler:^(LGAlertView *alertView, NSString*title, NSUInteger index) {

CBPeripheral *per;

per = index

self.deviceName = index

[self.bluetoothManagerconnectPeripheral:per options:nil];

此时是中心设备和外部设备的连接,连接成功或者失败会进入不同的方法。

} cancelHandler:^(LGAlertView*alertView) {

[self.bluetoothManagerstopScan];

} destructiveHandler:nil];

}

4、中心设备与外部设备连接状态调用的方法:

-(void)centralManager:(CBCentralManager *)centraldidConnectPeripheral:(CBPeripheral *)peripheral(中心设备和外部设备的连接成功){

[central stopScan];

//设置的peripheral委托CBPeripheralDelegate

[peripheral setDelegate:self];

//扫描外设Services,成功后会进入方法:

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

[peripheral discoverServices:nil];

}

- (void)centralManager:(CBCentralManager *)central

didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(nullableNSError

*)error;(中心设备和外部设备的连接断开)

- (void)centralManager:(CBCentralManager *)central

didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error ;(中心设备和外部设备的连接,连接失败)

5、扫描外设服务后紧接着会进入服务的代理方法中:

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

for (CBService *service inperipheral.services) {

//扫描每个service的Characteristics,扫描到后会进入方法:-(void)peripheral:(CBPeripheral *)peripheral

didDiscoverCharacteristicsForService:(CBService *)service error:(NSError

*)error;

[peripheral discoverCharacteristics:nilforService:service];

}

}

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

//获取Characteristic的值,读到数据会进入方法:-(void)peripheral:(CBPeripheral

*)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic

error:(NSError *)error;

for (CBCharacteristic*characteristic in service.characteristics){

[peripheralreadValueForCharacteristic:characteristic];

}

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

//打印出characteristic的UUID和值

//!注意,value的类型是NSData,具体开发时,会根据外设协议制定的方式去解析数据

NSLog(@"characteristicuuid:%@value:%@",characteristic.UUID,characteristic.value);

}

6、根据拿到的数据就可以进行写操作:

//写数据

- (void)writeCharacteristic:(CBPeripheral *)peripheral characteristic:(CBCharacteristic*)characteristic value:(NSData *)value {

//打印出characteristic的权限,可以看到有很多种,这是一个NS_OPTIONS,就是可以同时用于好几个值,常见的有read,write,notify,indicate,知道这几个基本就够用了,前连个是读写权限,后两个都是通知,两种不同的通知方式。

/*

typedef NS_OPTIONS(NSUInteger,CBCharacteristicProperties) {

CBCharacteristicPropertyBroadcast= 0x01,

CBCharacteristicPropertyRead= 0x02,

CBCharacteristicPropertyWriteWithoutResponse= 0x04,

CBCharacteristicPropertyWrite= 0x08,

CBCharacteristicPropertyNotify= 0x10,

CBCharacteristicPropertyIndicate= 0x20,

CBCharacteristicPropertyAuthenticatedSignedWrites= 0x40,

CBCharacteristicPropertyExtendedProperties= 0x80,

CBCharacteristicPropertyNotifyEncryptionRequired NS_ENUM_AVAILABLE(NA,6_0)= 0x100,

CBCharacteristicPropertyIndicateEncryptionRequired NS_ENUM_AVAILABLE(NA,6_0)= 0x200

};

*/

//只有characteristic.propertieswrite的权限才可以写

if(characteristic.properties& CBCharacteristicPropertyWrite){

//最好一个type参数可以为CBCharacteristicWriteWithResponsetype:CBCharacteristicWriteWithResponse,区别是是否会有反馈

[peripheral writeValue:valueforCharacteristic:characteristic type:CBCharacteristicWriteWithResponse];

}

}

7、根据下面方法判断写入成功与否:

- (void)peripheral:(CBPeripheral *)peripheraldidWriteValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError*)error;

8、搜索CharacteristicDescriptors,读到数据会进入方法:

-(void)peripheral:(CBPeripheral *)peripheraldidDiscoverDescriptorsForCharacteristic:(CBCharacteristic *)characteristicerror:(NSError *)error{

for (CBCharacteristic*characteristic in service.characteristics){

[peripheraldiscoverDescriptorsForCharacteristic:characteristic];

}

}

//搜索到Characteristic的Descriptors

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

//获取到Descriptors的值

- (void)peripheral:(CBPeripheral *)peripheraldidUpdateValueForDescriptor:(CBDescriptor *)descriptor error:(NSError *)error {

//打印出DescriptorsUUID和value

//这个descriptor都是对于characteristic的描述,一般都是字符串,所以这里我们转换成字符串去解析

NSLog(@"characteristicuuid:%@value:%@",[NSStringstringWithFormat:@"%@",descriptor.UUID],descriptor.value);

}

9、停止并断开连接设备:

- (void)disconnectPeripheral:(CBCentralManager *)centralManagerperipheral:(CBPeripheral *)peripheral {

//停止扫描

[centralManager stopScan];

//断开连接

[centralManagercancelPeripheralConnection:peripheral];

}

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

推荐阅读更多精彩内容