导言:智能家居近年来的兴起,蓝牙的重要性就显得越来越突出,刚好公司最近需要做了一个关于蓝牙饮水机项目。
CoreBluetooth框架,是苹果iOS5之后出的一个针对蓝牙4.0出的交互的桥梁,我现在先看下头文件
我们使用时后只需要导入#import#
CBCentralManager *center = [[CBCentralManager alloc] initWithDelegate:self queue:nil options:nil];
创建时候最好就是用单利来创建中心设备保证center唯一,
《中心设备:中心设备可以理解为是处理数据的iOS设备,比如你的 iPhone、iPad 等。
外设:外设顾名思义,就是产生数据的外部设备。这个外部设备可以是单片机、嵌入式设备甚至是另一个iOS设备等等。外设可以通过其传感器等产生有用数据,数据后通过蓝牙传给中心设备使用。
在建立连接的之前,外设向外发出广播数据(advertisementData,官方描述“A
dictionary containing any advertisement and scan response
data.”),广播数据是一个字典类数据,中心设备可以获取一定范围内的外设发出的广播数据。》参考talisk斯温的技术博客,iOS蓝牙开发CoreBluetooth快速入门,
扫描外设设备代理方面里有返回外设是否可以连接//检查App的设备BLE是否可用
- (void)centralManagerDidUpdateState:(CBCentralManager *)central
其中state返回值为CBCentralManagerStatePoweredOn,代表外设蓝牙设备可以连接连接设备很简单
.扫描外设
[self.center scanForPeripheralsWithServices:nil options:nil];
接收外设返回设备信息,根据设备信息是否进行连接
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI “这个代理方法在中心没有停止扫描之前会不停进入其中”
中心连接外设很简单
[self.center connectPeripheral:peripheral options:nil];
连接成功会进入
- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral
在连接到外设时候可以停止扫描
[self.center stopScan];
连接失败会进入代理方法可以进行重新连接
- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error
收到外设特征需要在代理方法里面设置读取和写入数据特征 "service.characteristics"
- (void)peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error{
for (CBCharacteristic *Characteristic in service.characteristics)
{
if ([Characteristic.UUID isEqual:[CBUUID UUIDWithString:UUIDNT]]) {//监听外设数据特征
[peripheral setNotifyValue:YES forCharacteristic:Characteristic];
[peripheral readValueForCharacteristic:Characteristic];
self.Characteristic = Characteristic;
peripheral.delegate =self;
}
if ([Characteristic.UUID isEqual:[CBUUID UUIDWithString:UUIDWR]]) {//写入数据特征
[peripheral setNotifyValue:YES forCharacteristic:Characteristic];
peripheral.delegate = self;
[peripheral readValueForCharacteristic:Characteristic];
self.writeCharacteristic = Characteristic;
}
}
当中心接收到外设返回的数据时候会进入这个代理方法
- (void)peripheral:(CBPeripheral *)peripheral didUpdateValueForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
遍历外设返回数据并转化为nsstring
for(int i=0;i<[characteristic.value length];i++)
{
NSString *newHexStr = [NSString stringWithFormat:@"%x",bytes[i]&0xff];///16进制数
if([newHexStr length]==1)
hexStr = [NSString stringWithFormat:@"%@0%@",hexStr,newHexStr];
else
hexStr = [NSString stringWithFormat:@"%@%@",hexStr,newHexStr];
}
NSRange rang = NSMakeRange(10, 2);
NSString *string = [hexStr substringWithRange:rang];
写入数据传到外设 "蓝牙4.0一般是16进制数据"
[self.discoveredPeripheral writeValue:data2 forCharacteristic:_writeCharacteristic type:CBCharacteristicWriteWithoutResponse];
这是一组16进制数据格式
Byte dataArr2[8];
dataArr2[0]= 0x0D;
dataArr2[1] = 0x0A;
dataArr2[2]= 0x0D;
dataArr2[3] = 0x0A;
dataArr2[4]= 0x4F;
dataArr2[5] = 0x4B;
dataArr2[6]= 0x0D;
dataArr2[7] = 0x0D;
NSData *data2 = [NSData dataWithBytes:dataArr2 length:8];
结语,上面只是个人的一些开发经验仅供参考,有什么不对的请在下面指教。