iOS 蓝牙开发(二)iOS 连接外设的代码实现

本文详细介绍了iOS应用中连接蓝牙外设的步骤,从建立中心角色、扫描和连接外设,到发现服务和特征、数据交互、订阅通知及断开连接。并提到了在Xcode模拟器上进行蓝牙调试的特殊方法。
摘要由CSDN通过智能技术生成

介绍了蓝牙的技术知识,这里我们具体说明一下中心模式的应用场景。主设备(手机去扫描连接外设,发现外设服务和属性,操作服务和属性的应用。一般来说,外设(蓝牙设备,比如智能手环之类的东西),会由硬件工程师开发好,并定义好设备提供的服务,每个服务对于的特征,每个特征的属性(只读,只写,通知等等),本文例子的业务场景,就是用一手机app去读写蓝牙设备。

iOS连接外设的代码实现流程

1. 建立中心角色

2. 扫描外设(discover)

3. 连接外设(connect)

4. 扫描外设中的服务和特征(discover)

 - 4.1 获取外设的services

 - 4.2 获取外设的Characteristics,获取Characteristics的值,获取Characteristics的Descriptor和Descriptor的值

5. 与外设做数据交互(explore and interact)

6. 订阅Characteristic的通知

7. 断开连接(disconnect)

准备环境

 1 Xcode

 2 开发证书和手机(蓝牙程序需要使用使用真机调试,使用模拟器也可以调试,但是方法很蛋疼,我会放在最后说)

 3 蓝牙外设

实现步骤

1 导入CoreBluetooth头文件,建立主设备管理类,设置主设备委托

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#import <corebluetooth corebluetooth.h="">
     @interface ViewController : UIViewController<cbcentralmanagerdelegate>
 
 
     @interface ViewController (){
         //系统蓝牙设备管理对象,可以把他理解为主设备,通过他,可以去扫描和链接外设
         CBCentralManager *manager;
     }
 
     - (void)viewDidLoad {
         [ super  viewDidLoad];
         /*
          设置主设备的委托,CBCentralManagerDelegate
             必须实现的:
             - (void)centralManagerDidUpdateState:(CBCentralManager *)central;//主设备状态改变的委托,在初始化CBCentralManager的适合会打开设备,只有当设备正确打开后才能使用
             其他选择实现的委托中比较重要的:
             - (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI; //找到外设的委托
             - (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral;//连接外设成功的委托
             - (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error;//外设连接失败的委托
             - (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error;//断开外设的委托
         */
          //初始化并设置委托和线程队列,最好一个线程的参数可以为nil,默认会就main线程
          manager = [[CBCentralManager alloc]initWithDelegate:self queue:dispatch_get_main_queue()];</cbcentralmanagerdelegate></corebluetooth>

2 扫描外设(discover),扫描外设的方法我们放在centralManager成功打开的委托中,因为只有设备成功打开,才能开始扫描,否则会报错。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  -(void)centralManagerDidUpdateState:(CBCentralManager *)central{
 
             switch  (central.state) {
                 case  CBCentralManagerStateUnknown:
                     NSLog(@ ">>>CBCentralManagerStateUnknown" );
                     break ;
                 case  CBCentralManagerStateResetting:
                     NSLog(@ ">>>CBCentralManagerStateResetting" );
                     break ;
                 case  CBCentralManagerStateUnsupported:
                     NSLog(@ ">>>CBCentralManagerStateUnsupported" );
                     break ;
                 case  CBCentralManagerStateUnauthorized:
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值