美文网首页
iOS蓝牙开发之CoreBluetooth框架简介

iOS蓝牙开发之CoreBluetooth框架简介

作者: Mr_fei | 来源:发表于2017-09-25 15:18 被阅读0次

蓝牙实现流程:

1.建立中心管理者
2.扫描外设
3.连接外设
4.扫描外设的服务和特征
5.与外设进行数据交互

代码实现:

第一:建立中心管理者
首先:导入#import <CoreBluetooth/CoreBluetooth.h>框架
初始化CBCentralManager对象并设置代理以及队列,queue:nil,默认就是在主线程

<CBCentralManagerDelegate>
@property (nonatomic, strong) CBCentralManager *centralManager;
self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:dispatch_get_main_queue()];

接着调用CBCentralManagerDelegate必须实现的方法- (void)centralManagerDidUpdateState:(CBCentralManager *)central

- (void)centralManagerDidUpdateState:(CBCentralManager *)central {
switch (central.state) {
            case CBCentralManagerStateUnknown:
                NSLog(@"CBCentralManagerStateUnknown");
                break;
            case CBCentralManagerStateResetting:
                NSLog(@"CBCentralManagerStateResetting");
                break;
            case CBCentralManagerStateUnsupported:
                NSLog(@"CBCentralManagerStateUnsupported");
                break;
            case CBCentralManagerStateUnauthorized:
                NSLog(@"CBCentralManagerStateUnauthorized");
                break;
            case CBCentralManagerStatePoweredOff:
                NSLog(@"CBCentralManagerStatePoweredOff");
                break;
            case CBCentralManagerStatePoweredOn:
                NSLog(@"CBCentralManagerStatePoweredOn");
                break;
            default:
                break;
        }
}

第二:扫描外设

- (void)centralManagerDidUpdateState:(CBCentralManager *)central {
    if (central.state == CBCentralManagerStatePoweredOn) {
        //扫描外设,第一个参数:nil,表示扫描所有外设,也可以根据CBUUID数组查找指定外设
        [self.centralManager scanForPeripheralsWithServices:nil options:nil];
    } else {
        NSLog(@"请打开蓝牙");
    }
}

扫描到外设之后,会调用此方法

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *, id> *)advertisementData RSSI:(NSNumber *)RSSI {
  //连接外设
}

第三:连接外设

@property (nonatomic, strong) CBPeripheral *peripheral;
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *, id> *)advertisementData RSSI:(NSNumber *)RSSI {
    NSLog(@"找到蓝牙外设 名称:%@",peripheral.name);
    
    if ([peripheral.name isEqualToString:@"要连接的蓝牙名称"]) {
        //这里要注意一点:peripheral在该方法里不被持有,调用结束后会被自动摧毁,保存外设,使其被持有
        self.peripheral = peripheral;
        //连接外设
        [self.centralManager connectPeripheral:peripheral options:nil];
    } else {
        NSLog(@"未找到要连接的外设");
    }
}

connectPeripheral方法后会执行以下代理方法

//外设连接成功
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
    NSLog(@"连接蓝牙成功");
    //设置代理以及查找服务
    [peripheral setDelegate:self];
    [peripheral discoverServices:nil];
}

//外设连接失败
- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error {
    NSLog(@"连接失败");
}

//断开连接
- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error {
    NSLog(@"断开连接");
}

第四:扫描外设的服务和特征

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
    NSLog(@"连接蓝牙成功");
    //设置代理<CBPeripheralDelegate>以及查找服务
    [peripheral setDelegate:self];
    [peripheral discoverServices:nil];
}
#pragma mark- CBPeripheralDelegate
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error {
    if (error) {
        NSLog(@"error: %@",error);
        return;
    }
    for (CBService *service in peripheral.services) {
        //扫描服务中的特征
        [peripheral discoverCharacteristics:nil forService:service];
    }
}

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error {
    for (CBCharacteristic *characteristics in service.characteristics) {
        if ([characteristics.UUID isEqual:[CBUUID UUIDWithString:@"writeUUID"]]) {
            //向外设发送数据:data
            [peripheral writeValue:[NSData data] forCharacteristic:characteristics type:CBCharacteristicWriteWithResponse];
        } else if ([characteristics.UUID isEqual:[CBUUID UUIDWithString:@"readUUID"]]) {
            [peripheral readValueForCharacteristic:characteristics];
        } else if ([characteristics.UUID isEqual:[CBUUID UUIDWithString:@"notifyUUID"]]) {
            [peripheral setNotifyValue:YES forCharacteristic:characteristics];
        }
    }
}

第五:与外设进行数据交互

[self.peripheral writeValue:[NSData data] forCharacteristic:characteristics type:CBCharacteristicWriteWithResponse];

//获取characteristic的值
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error {
    NSLog(@"收到数据:%@",characteristic.value);
    //此处对外设返回的数据进行处理
    
}

相关文章

  • iOS蓝牙4.0,收发数据设计

    iOS蓝牙开发,现在常规使用的是CoreBlueTooth.framework,即蓝牙4.0开发框架。 1.CBC...

  • iOS蓝牙开发之CoreBluetooth框架简介

    蓝牙实现流程: 1.建立中心管理者2.扫描外设3.连接外设4.扫描外设的服务和特征5.与外设进行数据交互 代码实现...

  • iOS 蓝牙特技

    常用iOS 蓝牙 系统框架:CoreBlueTooth 简介: 可用于第三方蓝牙设备交互,设备必须支持蓝牙4.0 ...

  • iOS蓝牙开发

    iOS蓝牙开发是围绕着CoreBluetooth框架实现的 1.iOS开发的关键词 中心设备:用于扫描周围的蓝牙硬...

  • iOS 关于蓝牙开发

    蓝牙库: 当前iOS中的蓝牙开发使用的都是系统自带的蓝牙库

  • iOS 蓝牙开发笔记

    iOS蓝牙框架介绍 (CoreBluetooth介绍) CoreBluetooth中涉及以下对象类: CBCent...

  • 蓝牙开发

    蓝牙开发使用CoreBluetooth框架实现两个iOS设备、iOS设备与非iOS蓝牙设备的交互。要注意的一点是目...

  • 小米手环iOS开发实战(一):iOS蓝牙框架CoreBlueto

    小米手环iOS开发实战(一):iOS蓝牙框架CoreBluetooth 本项目为对小米手环进行二次开发,利用了小米...

  • iOS 蓝牙交互基础知识

    要在iOS中集成蓝牙功能,需要使用的是CoreBluetooth框架,通过CoreBluetooth框架提供的AP...

  • iOS CoreBluetooth

    CoreBluetooth 在iOS和Mac应用中,CoreBluetooth框架用来与BLE(低功耗蓝牙)设备通...

网友评论

      本文标题:iOS蓝牙开发之CoreBluetooth框架简介

      本文链接:https://www.haomeiwen.com/subject/rgwrextx.html