iOS藍(lán)牙編程

藍(lán)牙基礎(chǔ)

  • MFI --- make for ipad ,iphone, itouch
  • BLE --- buletouch low energy
  • RSSI --- Received Signal Strength

<font color="blue">→_→ </font>developer.apple.com/CoreBluetooth

下面主要是用CoreBluetooth開發(fā)塑径。

中心(central)和外設(shè)(peripheral)

在CoreBluetooth框架下女坑,可以看成兩大模塊的通信:中心(central)和外設(shè)(peripheral)。

  • central
    • 接收數(shù)據(jù)的一方晓勇,比如接收智能溫度計的數(shù)據(jù)顯示溫度的手機端堂飞。
  • peripheral
    • 提供數(shù)據(jù)的一方。
    • 比如智能血壓計绑咱,智能溫度計绰筛。

服務(wù)(service)和特征(characteristic)

  • service和characteristic是peripheral組織數(shù)據(jù)的一種方式。
  • 一個peripheral可以有多個service描融, 每個service下可以有多個characteristic铝噩。

    <center>
    </center>
  • characteristic下有具體的數(shù)據(jù),比如智能燈下有兩個服務(wù):溫度窿克、亮度骏庸。亮度服務(wù)下有多個特征:當(dāng)前亮度毛甲、10分鐘前亮度......

Central

使用步驟

1.導(dǎo)入CoreBluetooth模塊

@import CoreBluetooth;

2.遵從協(xié)議

@interface BluetoothController : NSViewController<CBCentralManagerDelegate, CBPeripheralDelegate>

3.創(chuàng)建Central和Peripheral(數(shù)組)

@property (nonatomic, strong) NSMutableArray *peripheralArray;
@property (nonatomic, strong) CBCentralManager *myCentralManager;

self.myCentralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
self.peripheralArray = [NSMutableArray array];

4.查詢藍(lán)牙狀態(tài),可用的話具被,開始掃描

#pragma mark - CBCentralManagerDelegate methods

- (void)centralManagerDidUpdateState:(CBCentralManager *)central {
    NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:false], CBCentralManagerScanOptionAllowDuplicatesKey, nil];
    
    switch (central.state) {
        case CBCentralManagerStatePoweredOn:
            [self.myCentralManager scanForPeripheralsWithServices:nil options:dic];
            break;

        default:
            NSLog(@"Bluetooth is not working on the right state");
            break;
    }
}

5.發(fā)現(xiàn)Peripheral并連接

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *,id> *)advertisementData RSSI:(NSNumber *)RSSI {
    NSLog(@"Discovered %@", peripheral.name);
    [self.peripheralArray addObject:peripheral];
    if (self.targetPeripheral != peripheral) {
        self.targetPeripheral = peripheral;
        [self.myCentralManager connectPeripheral:peripheral options:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:CBConnectPeripheralOptionNotifyOnDisconnectionKey]];
        peripheral.delegate = self; // 處理peripheral的事件
    }
}

這時運行程序玻募,打印如下

Discovered MyCBServer
Discovered John’s iPhone

上面的MyCBServer是我在iphone上運行的Bluetooth Server程序中的service名稱。John是我的名字一姿。

6.連接上peripheral, 并查詢服務(wù)

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
    NSLog(@"Connected to %@", peripheral.name);
    [peripheral discoverServices:nil]; //nil七咧,查詢所有服務(wù)
    //[peripheral discoverServices:@[[CBUUID UUIDWithString:kServiceUUID]]];//查詢指定服務(wù)
}

打印:

Connected to MyCBServer

7.peripheral查到服務(wù)

打印所有服務(wù):

#pragma mark - CBPeripheralDelegate Methods

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error {
    if (error) {
        NSLog(@"error in discovering serviecs: %@", [error localizedDescription]);
        return;
    }
    
    for (CBService *service in peripheral.services) {
        NSLog(@"service's uuid : %@", service.UUID);
    }
}

打印

service's uuid : Battery
service's uuid : Current Time
service's uuid : Device Information
service's uuid : Unknown (<c5ac0853 51224856 ac70a80e 990d1c15>)

上面的c5ac0853 51224856 ac70a80e 990d1c15就是iphone上運行的service UUID.

我手機上的Service和Characteristic的UUID分別為:

static NSString * const kServiceUUID = @"C5AC0853-5122-4856-AC70-A80E990D1C15";
static NSString * const kCharacteristicUUID = @"013AFE01-3E37-4E58-B6FD-DC4E67CF8F03";

上面的數(shù)字是在Mac上用uuidgen命令生成的叮叹。

UUID: Universally Unique Identifier

下面需要針對特定的service艾栋,讓peripheral去查它的characteristics
這里即是針對kServiceUUID蛉顽,查它下面的特征蝗砾。

#pragma mark - CBPeripheralDelegate Methods

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error {
    if (error) {
        NSLog(@"error in discovering serviecs: %@", [error localizedDescription]);
        return;
    }
    
    for (CBService *service in peripheral.services) {
//        NSLog(@"service's uuid : %@", service.UUID);
        if ([service.UUID isEqual:[CBUUID UUIDWithString: kServiceUUID]]) {
            [peripheral discoverCharacteristics:[NSArray arrayWithObject:[CBUUID UUIDWithString:kCharacteristicUUID]] forService:service];
        }
    }
}

8.peripheral查到特征

打印所有特征

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error {
    if (error) {
        NSLog(@"error discovering characteristic : %@", [error localizedDescription]);
    }
    
    for (CBCharacteristic *characteristic in service.characteristics) {
        NSLog(@"characteristic uuid: %@", [characteristic UUID]);
    }
}

輸出:

characteristic uuid: Unknown (<013afe01 3e374e58 b6fddc4e 67cf8f03>)

試想這個場景:智能血壓計需要將某些數(shù)據(jù)即時更新給central。這里携冤,可以給指定的特征設(shè)置Notifiy, 設(shè)置以后悼粮,peripheral的特征值更新會及時通過delegate反饋過來。

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error {
    if (error) {
        NSLog(@"error discovering characteristic : %@", [error localizedDescription]);
    }
    
    if ([service.UUID isEqual:[CBUUID UUIDWithString:kServiceUUID]]) {
        for (CBCharacteristic *characteristic in service.characteristics) {
//            NSLog(@"characteristic uuid: %@", [characteristic UUID]);
            if ([characteristic.UUID isEqual:[CBUUID UUIDWithString:kCharacteristicUUID]]) {
                [peripheral setNotifyValue:YES forCharacteristic:characteristic];//訂閱特征
            }
        }
    }
}

9.peripheral說特征值有更新

上面setNotifyValue:YES函數(shù)設(shè)置了notify噪叙。那么這個特征值有更新的話矮锈,就會通過下面的函數(shù)告訴central

- (void)peripheral:(CBPeripheral *)peripheral didUpdateNotificationStateForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error {
    if (error) {
        NSLog(@"error notifying : %@", [error localizedDescription]);
        return;
    }

10.peripheral讀到數(shù)據(jù)

通過下面的代理方法獲取value:

- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error {
    if (error) {
        NSLog(@"error update value : %@", [error localizedDescription]);
        return;
    }
    
    NSString *value = [[NSString alloc] initWithData:characteristic.value encoding:NSUTF8StringEncoding];
    NSLog(@"Value: %@", value);
}

Peripheral

使用步驟

see also →_→ developer.apple.com/PeripheralRole

1.導(dǎo)入藍(lán)牙模塊

@import CoreBluetooth;

2.遵從CBPeripheralManagerDelegate協(xié)議

@interface ViewController : UIViewController<CBPeripheralManagerDelegate>

3.創(chuàng)建myPeripheralManager

@property (nonatomic, strong) CBPeripheralManager *myPeripheralManager;

self.myPeripheralManager = [[CBPeripheralManager alloc] initWithDelegate:self queue:nil];

4.查詢藍(lán)牙狀態(tài), 可用的話添加服務(wù)

#pragma mark - Custom methods

- (void)addService {
    CBMutableService *service = [[CBMutableService alloc] initWithType:[CBUUID UUIDWithString:kServiceUUID] primary:YES];//primary
    CBMutableCharacteristic *characteristic = [[CBMutableCharacteristic alloc] initWithType:[CBUUID UUIDWithString:kCharacteristicUUID] properties:CBCharacteristicPropertyNotify value:nil permissions:CBAttributePermissionsReadable];
    self.myCharacteristic = characteristic;
    [service setCharacteristics:@[characteristic]];
    
    [self.myPeripheralManager addService:service];
}

#pragma mark - CBPeripheralManagerDelegate methods

- (void)peripheralManagerDidUpdateState:(CBPeripheralManager *)peripheral {
    switch (peripheral.state) {
        case CBPeripheralManagerStatePoweredOn:
            [self addService];
            break;
            
        default:
            NSLog(@"Peripheral Manager is not working on the right state");
            break;
    }
}

5.服務(wù)添加成功霉翔,開始廣告

- (void)peripheralManager:(CBPeripheralManager *)peripheral didAddService:(CBService *)service error:(NSError *)error {
    if (error) {
        NSLog(@"Error publishing service: %@", [error localizedDescription]);
        return;
    }
    
    [self.myPeripheralManager startAdvertising:@{CBAdvertisementDataLocalNameKey:@"MyCBServer", CBAdvertisementDataServiceUUIDsKey: [CBUUID UUIDWithString:kServiceUUID]}];
}

6.廣告成功

- (void)peripheralManagerDidStartAdvertising:(CBPeripheralManager *)peripheral error:(NSError *)error {
    if (error) {
        NSLog(@"error advertising : %@", [error localizedDescription]);
        self.showLabel.text = [NSString stringWithFormat:@"error advertising: %@", [error localizedDescription]];
        return;
    }
    
    self.showLabel.text = @"start advertising";
    
}

7.更新特征值

<center>



</center>
添加兩個button睁蕾,用來改變特征值

@property (nonatomic, assign) NSInteger count;
- (IBAction)MinusButtonClicked:(id)sender {
    if ([self.myPeripheralManager state] != CBPeripheralManagerStatePoweredOn) {
        return;
    }
    --(self.count);
    NSData *data = [[NSString stringWithFormat:@"count is now %ld", (long)self.count] dataUsingEncoding:NSUTF8StringEncoding];
    [self.myPeripheralManager updateValue:data forCharacteristic:self.myCharacteristic onSubscribedCentrals:self.centrayArray];
}
- (IBAction)AddButtonClicked:(id)sender {
    if ([self.myPeripheralManager state] != CBPeripheralManagerStatePoweredOn) {
        return;
    }
    ++(self.count);
    NSData *data = [[NSString stringWithFormat:@"count is now %ld", (long)self.count] dataUsingEncoding:NSUTF8StringEncoding];
    [self.myPeripheralManager updateValue:data forCharacteristic:self.myCharacteristic onSubscribedCentrals:self.centrayArray];
}

點擊button,central輸出:

Value: count is now -2
Value: count is now -1
Value: count is now 0
Value: count is now 1

資源

完整代碼已上傳到 →_→ github, 歡迎下載使用债朵。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末子眶,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子序芦,更是在濱河造成了極大的恐慌臭杰,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件谚中,死亡現(xiàn)場離奇詭異渴杆,居然都是意外死亡,警方通過查閱死者的電腦和手機宪塔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進(jìn)店門磁奖,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人某筐,你說我怎么就攤上這事比搭。” “怎么了南誊?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵身诺,是天一觀的道長蜜托。 經(jīng)常有香客問我,道長霉赡,這世上最難降的妖魔是什么橄务? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮穴亏,結(jié)果婚禮上仪糖,老公的妹妹穿的比我還像新娘。我一直安慰自己迫肖,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布故爵。 她就那樣靜靜地躺著隅津,像睡著了一般诬垂。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上伦仍,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天,我揣著相機與錄音充蓝,去河邊找鬼。 笑死谓苟,一個胖子當(dāng)著我的面吹牛官脓,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播涝焙,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼卑笨,長吁一口氣:“原來是場噩夢啊……” “哼仑撞!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起隧哮,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤近迁,失蹤者是張志新(化名)和其女友劉穎艺普,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡岸浑,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年矢洲,在試婚紗的時候發(fā)現(xiàn)自己被綠了缩焦。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片读虏。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡盖桥,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出揩徊,到底是詐尸還是另有隱情嵌赠,我是刑警寧澤,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布姜挺,位于F島的核電站齿税,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏炊豪。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一陌知、第九天 我趴在偏房一處隱蔽的房頂上張望掖肋。 院中可真熱鬧赏参,春花似錦、人聲如沸把篓。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至坊谁,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間口芍,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工颠猴, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留小染,地道東北人。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓春畔,卻偏偏與公主長得像岛都,于是被迫代替她去往敵國和親律姨。 傳聞我的和親對象是個殘疾皇子臼疫,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,452評論 2 348

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

  • iOS的藍(lán)牙框架是支持藍(lán)牙4.0協(xié)議的烫堤。理解iOS CoreBluetooth兩個很重要的概念,Central 和...
    風(fēng)繼續(xù)吹0閱讀 848評論 0 1
  • 小引 隨著穿戴設(shè)備和智能家居的熱情不斷拔创,app藍(lán)牙的開發(fā)也很火熱富蓄,基于iOS藍(lán)牙的開發(fā)資料有不少剩燥,但是最最值得學(xué)習(xí)...
    MarkLin閱讀 11,863評論 15 55
  • 本文出自: http://mokai.me/bluetooth-guide.html 藍(lán)牙技術(shù)灭红,很早以前就被有了...
    _GKK_閱讀 1,298評論 0 3
  • 本文主要以藍(lán)牙4.0做介紹,因為現(xiàn)在iOS能用的藍(lán)牙也就是只僅僅4.0的設(shè)備 用的庫就是core bluetoot...
    暮雨飛煙閱讀 832評論 0 2
  • 今天我爸爸上班去口注,我在家自己等著媽媽,也沒哭回來寝志,媽媽到家啦策添,很早毫缆。回來我們就開始媽媽給我做飯啦悔醋,坐在身邊調(diào)。吃完...
    萌萌王詩雅閱讀 220評論 0 0