CoreBlueTooth框架初步應(yīng)用

首先導(dǎo)入庫#import<CoreBluetooth/CoreBluetooth.h>

遵循代理:<CBCentralManagerDelegate,CBPeripheralDelegate>

聲明變量:

@property(nonatomic,strong)CBCentralManager*bluetoothManager;

@property(nonatomic,strong)CBPeripheralManager*manager;

1、創(chuàng)建中心設(shè)備并設(shè)置代理:

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

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

CBCentralManagerDelegate代理必須執(zhí)行方法是查看中心設(shè)備狀態(tài)是否打開藍(lán)牙:

-(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、開始掃描外部設(shè)備:

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

第一個參數(shù)那里表示掃描帶有相關(guān)服務(wù)的外部設(shè)備晌块,例如填寫

@[[CBUUID UUIDWithString:@"需要連接的外部設(shè)備的服務(wù)的UUID"]],即表示帶有需要連接的外部設(shè)備的服務(wù)的UUID的外部設(shè)備否灾,nil表示掃描全部設(shè)備;

@{ CBCentralManagerScanOptionAllowDuplicatesKey : @NO }

NO表示不會讓中心設(shè)備不斷地監(jiān)聽外部設(shè)備的消息鸣奔,YES就是能不斷地監(jiān)聽外部設(shè)備消息墨技。

3、一旦掃描到外部設(shè)備挎狸,就會進(jìn)入?yún)f(xié)議中:

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

//找到的設(shè)備必須持有它扣汪,否則CBCentralManager中也不會保存peripheral,那么CBPeripheralDelegate中的方法也不會被調(diào)用锨匆!

在這里可以根據(jù)我們所知道的硬件設(shè)備條件來篩選所需要的設(shè)備崭别,將其他打開藍(lán)牙的設(shè)備排除在外。

例如:搜找硬件盒子名字為JL的設(shè)備:

@property (nonatomic, strong) NSMutableArray *peripherals;

@property(nonatomic, strong) NSMutableArray *peripheralsNameArray;

初始化數(shù)組略

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];

}

}

}

}

選擇某一搜索到的特定設(shè)備進(jìn)行連接

LGAlertView *alert= [LGAlertView alertViewWithTitle:@"請選擇您的設(shè)備"

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];

此時是中心設(shè)備和外部設(shè)備的連接恐锣,連接成功或者失敗會進(jìn)入不同的方法茅主。

} cancelHandler:^(LGAlertView*alertView) {

[self.bluetoothManagerstopScan];

} destructiveHandler:nil];

}

4、中心設(shè)備與外部設(shè)備連接狀態(tài)調(diào)用的方法:

-(void)centralManager:(CBCentralManager *)centraldidConnectPeripheral:(CBPeripheral *)peripheral(中心設(shè)備和外部設(shè)備的連接成功){

[central stopScan];

//設(shè)置的peripheral委托CBPeripheralDelegate

[peripheral setDelegate:self];

//掃描外設(shè)Services土榴,成功后會進(jìn)入方法:

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

[peripheral discoverServices:nil];

}

- (void)centralManager:(CBCentralManager *)central

didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(nullableNSError

*)error;(中心設(shè)備和外部設(shè)備的連接斷開)

- (void)centralManager:(CBCentralManager *)central

didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error ;(中心設(shè)備和外部設(shè)備的連接诀姚,連接失敗)

5玷禽、掃描外設(shè)服務(wù)后緊接著會進(jìn)入服務(wù)的代理方法中:

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

for (CBService *service inperipheral.services) {

//掃描每個service的Characteristics赫段,掃描到后會進(jìn)入方法:-(void)peripheral:(CBPeripheral *)peripheral

didDiscoverCharacteristicsForService:(CBService *)service error:(NSError

*)error;

[peripheral discoverCharacteristics:nilforService:service];

}

}

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

//獲取Characteristic的值矢赁,讀到數(shù)據(jù)會進(jìn)入方法:-(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撩银,具體開發(fā)時给涕,會根據(jù)外設(shè)協(xié)議制定的方式去解析數(shù)據(jù)

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

}

6、根據(jù)拿到的數(shù)據(jù)就可以進(jìn)行寫操作:

//寫數(shù)據(jù)

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

//打印出characteristic的權(quán)限蜒蕾,可以看到有很多種,這是一個NS_OPTIONS焕阿,就是可以同時用于好幾個值咪啡,常見的有read,write暮屡,notify撤摸,indicate,知道這幾個基本就夠用了,前連個是讀寫權(quán)限准夷,后兩個都是通知钥飞,兩種不同的通知方式。

/*

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的權(quán)限才可以寫

if(characteristic.properties& CBCharacteristicPropertyWrite){

//最好一個type參數(shù)可以為CBCharacteristicWriteWithResponsetype:CBCharacteristicWriteWithResponse,區(qū)別是是否會有反饋

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

}

}

7衫嵌、根據(jù)下面方法判斷寫入成功與否:

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

8读宙、搜索CharacteristicDescriptors,讀到數(shù)據(jù)會進(jìn)入方法:

-(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的描述楔绞,一般都是字符串结闸,所以這里我們轉(zhuǎn)換成字符串去解析

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

}

9、停止并斷開連接設(shè)備:

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

//停止掃描

[centralManager stopScan];

//斷開連接

[centralManagercancelPeripheralConnection:peripheral];

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末酒朵,一起剝皮案震驚了整個濱河市桦锄,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌蔫耽,老刑警劉巖结耀,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異匙铡,居然都是意外死亡图甜,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門慰枕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來具则,“玉大人,你說我怎么就攤上這事具帮〔├撸” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵蜂厅,是天一觀的道長匪凡。 經(jīng)常有香客問我,道長掘猿,這世上最難降的妖魔是什么病游? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮稠通,結(jié)果婚禮上衬衬,老公的妹妹穿的比我還像新娘。我一直安慰自己改橘,他們只是感情好滋尉,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著飞主,像睡著了一般狮惜。 火紅的嫁衣襯著肌膚如雪高诺。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天碾篡,我揣著相機(jī)與錄音虱而,去河邊找鬼。 笑死开泽,一個胖子當(dāng)著我的面吹牛牡拇,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播眼姐,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼诅迷,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了众旗?” 一聲冷哼從身側(cè)響起罢杉,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎贡歧,沒想到半個月后滩租,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡利朵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年律想,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片绍弟。...
    茶點(diǎn)故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡技即,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出樟遣,到底是詐尸還是另有隱情而叼,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布豹悬,位于F島的核電站葵陵,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏瞻佛。R本人自食惡果不足惜脱篙,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望伤柄。 院中可真熱鬧绊困,春花似錦、人聲如沸适刀。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蔗彤。三九已至川梅,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間然遏,已是汗流浹背贫途。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留待侵,地道東北人丢早。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像秧倾,于是被迫代替她去往敵國和親怨酝。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評論 2 345

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