iOS 蓝牙4.0开发

时间:2022-12-10 20:22:34

背景:

1.iOS的蓝牙不能用来传输文件。
2.iOS与iOS设备之间进行数据通信,使用gameKit.framework
3.iOS与其他非iOS设备进行数据通信,使用coreBluetooth.framework

iOS中蓝牙的实现方案

iOS中提供了4个框架用于实现蓝牙连接
GameKit.framework(用法简单)
只能用于iOS设备之间的连接,多用于游戏(比如五子棋对战),从iOS7开始过期

MultipeerConnectivity.framework
只能用于iOS设备之间的连接,从iOS7开始引入,主要用于文件共享(仅限于沙盒的文件)

ExternalAccessory.framework
可用于第三方蓝牙设备交互,但是蓝牙设备必须经过苹果MFi认证(国内较少)

CoreBluetooth.framework(时下热门)
可用于第三方蓝牙设备交互,必须要支持蓝牙4.0
硬件至少是4s,系统至少是iOS6
蓝牙4.0以低功耗著称,一般也叫BLE(BluetoothLowEnergy)
目前应用比较多的案例:运动手坏、嵌入式设备、智能家居

下面具体介绍使用CoreBluetooth.framework的代码步骤:

//蓝牙系统库

#import <CoreBluetooth/CoreBluetooth.h>

//必须要由UUID来唯一标示对应的service和characteristic

#define kServiceUUID @"5C476471-1109-4EBE-A826-45B4F9D74FB9"

#define kCharacteristicHeartRateUUID @"82C7AC0F-6113-4EC9-92D1-5EEF44571398"

#define kCharacteristicBodyLocationUUID @"537B5FD6-1889-4041-9C35-F6949D1CA034"

@interface ViewController ()<CBCentralManagerDelegate,CBPeripheralDelegate>

@property (nonatomic,strong)CBCentralManager * centralManager;

@property (nonatomic,strong)CBPeripheral     * peripheral;

@end

1.创建中心角色

#import <CoreBluetooth/CoreBluetooth.h>
- (void)viewDidLoad { [super viewDidLoad]; //初始化蓝牙 central manager _centralManager = [[CBCentralManager alloc]initWithDelegate:self queue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0) options:nil]; }

2.扫描外设

[manager scanForPeripheralsWithServices:nil options:@{CBCentralManagerRestoredStateScanOptionsKey:@(YES)}];

3.连接外设

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
if([peripheral.name isEqualToString:BLE_SERVICE_NAME]){
[self connect:peripheral];
}
s);
} -(BOOL)connect:(CBPeripheral *)peripheral{
self.manager.delegate = self;
[self.manager connectPeripheral:peripheral
options:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:CBConnectPeripheralOptionNotifyOnDisconnectionKey]];
}

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

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
{ NSLog(@"Did connect to peripheral: %@", peripheral);
_testPeripheral = peripheral; [peripheral setDelegate:self]; <br>//查找服务
[peripheral discoverServices:nil]; }

发现服务:

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverServices:(NSError *)error
{ NSLog(@"didDiscoverServices"); if (error)
{
NSLog(@"Discovered services for %@ with error: %@", peripheral.name, [error localizedDescription]); if ([self.delegate respondsToSelector:@selector(DidNotifyFailConnectService:withPeripheral:error:)])
[self.delegate DidNotifyFailConnectService:nil withPeripheral:nil error:nil]; return;
} for (CBService *service in peripheral.services)
{
//发现服务
if ([service.UUID isEqual:[CBUUID UUIDWithString:UUIDSTR_ISSC_PROPRIETARY_SERVICE]])
{
NSLog(@"Service found with UUID: %@", service.UUID); <br>//查找特征
[peripheral discoverCharacteristics:nil forService:service];
break;
} }
}

发现服务中的特征:

- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error
{ if (error)
{
NSLog(@"Discovered characteristics for %@ with error: %@", service.UUID, [error localizedDescription]); [self error];
return;
} NSLog(@"服务:%@",service.UUID);
for (CBCharacteristic *characteristic in service.characteristics)
{
//发现特征
if ([characteristic.UUID isEqual:[CBUUID UUIDWithString:@"xxxxxxx"]]) {
NSLog(@"监听:%@",characteristic);<br>//监听特征
[self.peripheral setNotifyValue:YES forCharacteristic:characteristic];
} }
}

5.与外设进行数据交互
读取数据:

- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
if (error)
{
NSLog(@"Error updating value for characteristic %@ error: %@", characteristic.UUID, [error localizedDescription]);
self.error_b = BluetoothError_System;
[self error];
return;
} // NSLog(@"收到的数据:%@",characteristic.value);
[self decodeData:characteristic.value];
}

写数据:

NSData *d2 = [[PBABluetoothDecode sharedManager] HexStringToNSData:@"0x02"];
[self.peripheral writeValue:d2 forCharacteristic:characteristic type:CBChar

iOS 蓝牙4.0开发的更多相关文章

  1. iOS蓝牙4&period;0开发

    文/starfox寒流(简书作者)原文链接:http://www.jianshu.com/p/974d165f78b5著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”. iOS 蓝牙4.0 ...

  2. iOS蓝牙4&period;0开发&lpar;BLE&rpar;

    智能设备 和 app 通过 BLE通讯的两种模型 模型一:设备提供数据,app 展示数据: 比如小米手环 模型二:app提供数据,设备接收: 模型与corebluetooth的对应关系: 模型一:智能 ...

  3. iOS蓝牙4&period;0开发例子

    1建立中心角色 1 2 3 #import <CoreBluetooth/CoreBluetooth.h>  CBCentralManager *manager;  manager = [ ...

  4. iOS蓝牙BLE4&period;0通信功能

    概述 iOS蓝牙BLE4.0通信功能,最近刚学的苹果,为了实现蓝牙门锁的项目,找了一天学习了下蓝牙的原理,亲手测试了一次蓝牙的通信功能,结果成功了,那么就把我学习的东西分享一下. 详细 代码下载:ht ...

  5. iOS蓝牙4&period;0协议简单介绍

    iOS开发蓝牙4.0的框架是CoreBluetooth,本文主要介绍CoreBluetooth的使用,关于本文中的代码片段大多来自github上的一个demo,地址是myz1104/Bluetooth ...

  6. https&colon;&sol;&sol;github&period;com&sol;coolnameismy&sol;BabyBluetooth github上的一个ios 蓝牙4&period;0的库并带文档和教程

    The easiest way to use Bluetooth (BLE )in ios,even bady can use. 简单易用的蓝牙库,基于CoreBluetooth的封装,并兼容ios和 ...

  7. iOS蓝牙4&period;0

    iOS的蓝牙用到了  CoreBluetooth 框架 首先导入框架 #import <CoreBluetooth/CoreBluetooth.h> 我们需要一个管理者来管理蓝牙设备,CB ...

  8. android 蓝牙4&period;0 开发介绍

    最近一直在研究一个蓝牙功能 由于本人是菜鸟  学起来比较忙 一直搞了好久才弄懂 , 网上对蓝牙4.0也就是几个个dome 抄来抄去,全是英文注解 , 对英语不好的朋友来说 真是硬伤 , 一些没必要的描 ...

  9. CoreBluetooth——IOS蓝牙4&period;0使用心得

    原文链接:http://m.blog.csdn.net/article/details?plg_nld=1&id=51014318&plg_auth=1&plg_uin=1&a ...

随机推荐

  1. 将JSON对象带有格式的写出到文件中

    需求:将一个JSON对象写出到文件中,要求文件中的JSON数据带有简单的格式.代码的实现参考了Java算法中的栈处理括号匹配问题.好了,不多说了,下面是代码的实现. 代码: package gemu. ...

  2. 咦,为DJANGO的ORM的QUERYSET增加数据列的样码,很好用哟

    这个我真的没有查资料,是通过直觉和经验弄出来的,哈哈,感觉用深一点好. 这样在模板输出时,就更好控制啦.. if self.kwargs: if self.kwargs.has_key('search ...

  3. SQL Server2008安装教程

    SQL Server2008安装教程   第一步,打开文件,点击开始安装: 第二步,打开后点击左边项的安装,选择右边第一项: 第三步,点击确定: 第四步,选择接受服务条款,点击下一步: 第五步,按着一 ...

  4. 字符串join函数跟&plus;号测试

    字符串join函数for循环+区别: 原因是这样的,字符串是不可变对象,当用操作符+连接字符串的时候,每执行一次+都会申请一块新的内存,然后复制上一个+操作的结果和本次操作的右操作符到这块内存空间,因 ...

  5. 痞子衡嵌入式:ARM Cortex-M文件那些事(2)- 链接文件&lpar;&period;icf&rpar;

    大家好,我是痞子衡,是正经搞技术的痞子.今天痞子衡给大家讲的是嵌入式开发里的linker文件. 在前一节课源文件(.c/.h/.s)里,痞子衡给大家系统地介绍了source文件,source文件是嵌入 ...

  6. Improving Deep Neural Networks&colon; Hyperparameter tuning&comma; Regularization and Optimization(第一周)深度学习的实践层面 &lpar;Practical aspects of Deep Learning&rpar;

    1. Setting up your Machine Learning Application 1.1 训练,验证,测试集(Train / Dev / Test sets) 1.2 Bias/Vari ...

  7. C&plus;&plus; code:for loop designs

    1  用for循环编出系列图形 该图形一共10行,每一行增加一个字符,所以应循环10次,每次输出一行.其循环模式为: :i<=;++i) { 输出第i行 换行 } 我们注意到,每一行长度的变化正 ...

  8. If you sleep now&comma;you will have a dream&period; If you study now&comma;you will achieve your dream&period;

    If you sleep now,you will have a dream. If you study now,you will achieve your dream. 我开始思考,What's m ...

  9. ubuntu14静态ip配置

    0.配置ip需要掌握的一些基本指令 打开/创建文件      sudo vim ... 插入信息      i 保存并强制退出      先按Esc,再键入:wq!,回车 1.使用命令 sudo vi ...

  10. 朴素贝叶斯文本分类&lpar;python代码实现&rpar;

    朴素贝叶斯(naive bayes)法是基于贝叶斯定理与特征条件独立假设的分类方法. 优点:在数据较少的情况下仍然有效,可以处理多分类问题. 缺点:对入输入数据的准备方式较为敏感. 使用数据类型:标称 ...