https://www.jianshu.com/p/eb58dcbae5f9

2016.06.07 23:04* 字数 285 阅读 852评论 4喜欢 3

暂时 第一次功能性研究,具体实现,后续添加;

系统分类

iOS 设备,同一时间,只能处于某一种状态:作为中心设备,或者作为周边设备;

一般情况:iOS设备链接智能硬件,使用时作为中心设备,与硬件交互;

玩家对战,当面传输:一个作为中心,一个作为周边设备;

CBCentralManager - 中心设备管理,用于搜索周边设备,对应CBPeripheral使用

CBPeripheralManager - 周边设备管理,用于作为周边设备,对应CBCentral使用

CBPeripheral - 周边设备

CBCentral - 中心设备

CBService - 设备 服务

CBCharacteristic - 设备 服务 特征

CBDescriptor - 设备 服务 特征 描述

CBError - 错误

CBUUID - 唯一码

CBAdvertisementData -

CBATTRequest -

CBCentralManager 中心管理

  • 1 初始化 扫描周边设备

// 初始化 manager

self.centerManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];

// [self.centerManager stopScan];  可以停止扫描

- (void)centralManagerDidUpdateState:(CBCentralManager *)central {

if (central.state == CBCentralManagerStatePoweredOn) {

NSLog(@"蓝牙 - 打开");

// 开始扫描,周边设备

[self.centerManager scanForPeripheralsWithServices:nil options:nil];

} else {

NSLog(@"蓝牙 异常,其他状态自行判断");

}

}

- (void)centralManager:(CBCentralManager *)central willRestoreState:(NSDictionary<NSString *, id> *)dict {

NSLog(@"%@",dict);

}

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary<NSString *, id> *)advertisementData RSSI:(NSNumber *)RSSI {

if (peripheral.name) {

NSLog(@"扫描到设备 %@",peripheral.name);

}

}

  • 2 连接设备

// 某处,调用链接设备

[self.centerManager connectPeripheral:currentPer options:nil];

currentPer.delegate = self;

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {

NSLog(@"链接成功");

}

- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(nullable NSError *)error {

NSLog(@"链接失败");

}

- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(nullable NSError *)error {

NSLog(@"设备断开链接");

}

CBPeripheral 设备信息

属性

delegate:代理

name:设备名称

RSSI:设备信号强度

state:设备链接状态

services:设备提供的服务

下面,方法都对应了代理

  • 扫描 设备的某些 UUID 的服务

[currentPer discoverServices:@[@"UUID"]];

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(nullable NSError *)error {

NSLog(@"%@",service.UUID);

}

  • 扫描 设备的某服务的 UUID 服务?

[currentPer discoverIncludedServices:@[] forService:service];

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

NSLog(@"%@",service.UUID);

}

  • 扫描 设备的某个服务中的 UUID 特性

[peripheral discoverCharacteristics:@[] forService:peripheral.services.lastObject];

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

NSLog(@"%@",service.characteristics);

}

  • 扫描 设备的某个特征 UUID

[peripheral discoverDescriptorsForCharacteristic:peripheral.services.lastObject.characteristics.lastObject];

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

NSLog(@"%@",characteristic);

}

  • 获取设备 蓝牙信号强度

[peripheral readRSSI];

- (void)peripheral:(CBPeripheral *)peripheral didReadRSSI:(NSNumber *)RSSI error:(nullable NSError *)error {

NSLog(@"%@",RSSI.stringValue);

}

  • 读取 特征

[peripheral readValueForCharacteristic:peripheral.services.lastObject.characteristics.lastObject];

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

NSLog(@"%@",characteristic);

}

  • 读取 描述

[peripheral readValueForDescriptor:peripheral.services.lastObject.characteristics.lastObject.descriptors.lastObject];

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

NSLog(@"%@",descriptor);

}

  • 添加 监听

[peripheral setNotifyValue:YES forCharacteristic:peripheral.services.lastObject.characteristics.lastObject];

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

NSLog(@"%@",characteristic);

}

  • 写入描述

[peripheral writeValue:[NSData data] forDescriptor:peripheral.services.lastObject.characteristics.lastObject.descriptors.lastObject];

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

NSLog(@"%@",descriptor);

}

  • 写入 特征

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

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

NSLog(@"%@",characteristic);

}

其他

// 最大数据量?

NSLog(@"%zi",[peripheral maximumWriteValueLengthForType:CBCharacteristicWriteWithResponse]);

// 修改 名称

- (void)peripheralDidUpdateName:(CBPeripheral *)peripheral {

NSLog(@"%@",peripheral);

}

// 修改 服务

- (void)peripheral:(CBPeripheral *)peripheral didModifyServices:(NSArray<CBService *> *)invalidatedServices {

NSLog(@"%@",peripheral);

}

// 修改 RSSI

- (void)peripheralDidUpdateRSSI:(CBPeripheral *)peripheral error:(nullable NSError *)error {

NSLog(@"%@",peripheral.RSSI.stringValue);

}

CBService CBMutableService 服务

作为中心获取,作为周边创建

// 服务 包含 的 服务

for (CBService *ser in service.includedServices) {

NSLog(@"%@",ser.UUID);

}

// 服务 包含特征

for (CBCharacteristic *charcter in service.characteristics) {

NSLog(@"%@",charcter.UUID);

}

CBCharacteristic CBMutableCharacteristic 特征

作为中心获取,作为周边创建

CBCharacteristicProperties property = characteristic.properties;// 读写等属性

NSData *data = characteristic.value;// 特征数据

// 特征 包含的描述

for (CBDescriptor *desc in characteristic.descriptors) {

NSLog(@"%@",desc.UUID);

}

CBDescriptor CBMutableDescriptor

作为中心获取,作为周边创建

NSLog(@"%@",descriptor.value);

1

【CoreBluetooth】iOS 系统蓝牙框架的更多相关文章

  1. 苹果手机(ios系统)蓝牙BLE的一些特点

    摘自<BluetoothDesignGuidelines.pdf>文档 1. pairing: 苹果手机无法主动发起SMP配对流程,可通过以下两种方式发起配对流程: (1)从端主动发起配对 ...

  2. ios系统架构及常用框架

    1.iOS基于UNIX系统,因此从系统的稳定性上来说它要比其他操作系统的产品好很多 2.iOS的系统架构分为四层,由上到下一次为:可触摸层(Cocoa Touch layer).媒体层(Media l ...

  3. IOS系统之蓝牙外接设备

    Ios系统对于蓝牙外接设备在iphone4以前都是蓝牙2.0的时候,需要通过苹果的审核,据统计通过率仅有2%左右,现在蓝牙2.0基本上处于淘汰状态,所以在这里就不考虑了. 现在iphone4s以后的设 ...

  4. iOS之蓝牙开发—CoreBluetooth详解

    CoreBluetooth的API是基于BLE4.0的标准的.这个框架涵盖了BLE标准的所有细节.仅仅只有新的iOS设备和Mac是和BLE标准兼容.在CoreBluetooth框架中,有两个主要的角色 ...

  5. IOS系统框架

    IOS系统框架:ios架构号MAC OS的基础框架相似:ios扮演底层硬件和应用程序的中介,底层为所有应用程序提供基础服务,高层则包含一些复杂巧妙的技术和服务,并且创建的应用程序不能直接访问硬件. C ...

  6. iOS 系统框架

    iOS的系统架构分为四个层次:核心操作系统层(Core OS layer).核心服务层(Core Services layer).媒体层(Media layer)和可触摸层(Cocoa Touch l ...

  7. iOS 的基本框架

    在iOS中框架是一个目录,包含了共享资源库,用于访问该资源库中储存的代码的头文件,以及图像.声音文件等其他资源.共享资源库定义应用程序可以调用的函数和方法.    iOS为应用程序开发提供了许多可使用 ...

  8. 史上最全的常用iOS的第三方框架

    文章来源:http://blog.csdn.net/sky_2016/article/details/45502921 图像: 1.图片浏览控件MWPhotoBrowser       实现了一个照片 ...

  9. 常用iOS的第三方框架

    图像:1.图片浏览控件MWPhotoBrowser       实现了一个照片浏览器类似 iOS 自带的相册应用,可显示来自手机的图片或者是网络图片,可自动从网络下载图片并进行缓存.可对图片进行缩放等 ...

随机推荐

  1. 数星星 Stars

    问题 A: 数星星 Stars 时间限制: 1 Sec  内存限制: 128 MB[命题人:admin] 题目描述 输入 第一行一个整数 N,表示星星的数目: 接下来 N 行给出每颗星星的坐标,坐标用 ...

  2. halo的工作目录,有一个是在代码里配置的,硬编码了

    在HaloProperties.java中: /** * Work directory. */private String workDir = HaloConst.USER_HOME + " ...

  3. jmeter实现IP欺骗

    用jmeter模拟多个IP同时向一个目标发送请求 1.IP地址参数化 在csv文件中编辑参数化IP地址列表,参数化的IP需在同一个局域网,子网掩码相同(比如和客户端本机同一网段),如下 将csv列表中 ...

  4. 前端开发:mock.js的简单应用(生成随机数据,拦截 Ajax 请求)

    摘要 在前端开发过程中,后端接口还没有完全开发完成时,前端开发人员就需要学会自己模拟后端接口数据,更快更好的完成开发任务.模拟后端接口数据的js库有很多,今天就简单就简单的分享下mock.js在前端开 ...

  5. 03-Spring的IOC示例程序(通过类型获取对象)

    根据bean类型从IOC容器中获取bean的实例 ①test测试类 @Test public void Test02() { //获取spring容器对象 ApplicationContext app ...

  6. C# 重载与重写

    重载(overload) 指调用同一方法名,但各方法中参数的数据类型.个数或顺序不同. public static int Add(int x,int y) { return x + y; } pub ...

  7. JAVA基础学习(6)之使用对象

    6使用对象 6.1字符类型 6.1.1字符类型 char和int互相转换 //a比A大32 Scanner in=new Scanner(System.in); char c='B'; char c1 ...

  8. 简单的jquery Ajax进行登录!

    本案例包括login.html.login.php.jquery-1.12.0.min.js三个文件,只需将这三个文件放到同一文件夹下,即可运行. login.html: <!DOCTYPE h ...

  9. Jenkins+Maven+Github+Springboot实现可持续自动部署(非常详细)

    目前公司开发的项目已经部署到服务器上,部署项目的测试环境和生产环境,加上每个项目n个服务,于是我就 , 骚就是骚,但是就是太累了,于是花点时间研究了一下Jenkins. Jenkins的作用和它的lo ...

  10. JSON.parse()处理json字符串时需要处理的特殊字符

    var str= "json字符串"; str=str.replace(/\\/g,"\\\\"); str=str.replace(/\n/g,"\ ...