此文要理清的的问题是:使用CoreBluetooth框架发送与读取数据。数据传输于 CBCentralManager <~~~> CBPeripheral 之间。 首先明确iDevice是客户端,即 CBCentralManager端,是中心。CBPeripheral 为服务器端,是外围设备。然后按照逻辑一步步理下去:
1.首先工程倒入CoreBluetooth框架: #import<CoreBluetooth/CoreBluetooth.h>,这就是蓝牙开发的第一步。
2.在声明文件中设置CBCentralManager的代理,导入协议,以便后续使用CBCentralManager的行为方法。
@interface ViewController :UIViewController<CBCentralManagerDelegate>
3.把CBCentralManager设置为属性:@property(strong,nonatomic)CBCentralManager *CM;
4.初始化iDevice的蓝牙管理中心:self.CM = [[CBCentralManageralloc]initWithDelegate:selfqueue:nil];其中的初始化方法提供了两个信息1)让本类做为代理,2)queue的参数 表示的是关于线程的,如果CBCentralManager如果在主线程上跑的话,我们就可以设为nil,如果需要处理更复杂的事情,我们可以在这里创建不同的线程,才会用到这个队列。
5.一但CBCentralManager初始化成功,就需要立马检查设备的蓝牙的状态,调用这个代理方法:-(void)centralManagerDidUpdateState:(CBCentralManager *)central;蓝牙一共有六种状态:
(1)CBCentralManagerStatePoweredOff Bluetooth is currently powered off. 蓝牙电源处于关闭状态。
(2)CBCentralManagerStatePoweredOn Bluetooth is currently powered on and available to use.蓝牙电源处于开启状态,可以使用。
(3)CBCentralManagerStateResetting The connection with the system service was momentarily lost, update imminent. 连上系统服务突然断开,紧急更新中
(4)CBCentralManagerStateUnauthorized The application is not authorized to use the Bluetooth Low Energy Central/Client role. 应用无权限使用低功耗角色
(5)CBCentralManagerStateUnknown State unknown, update imminent.状态未知,紧急更新中
(6)CBCentralManagerStateUnsupported The platform doesn't support the Bluetooth Low Energy Central/Client role.设备不支持蓝牙低功耗角色
6.为了接下来进行搜索,我们要把指定搜索的服务和特征的UUID定义出来,也可以全部搜索,不用定义。下面是我的宏定义:
#defineSERVICE_UUID 0xFFF0
#defineCHAR_UUID 0xFFF1
#defineNotify_UUID 0xfff4
也可以直接定义最初的uuidgen,这是别人别人定义的,如:
staticNSString*constkCharacteristicUUID=@"FFA28CDE-7725-5589-801C-1B060CAC9767";
staticNSString*constkServiceUUID=@"412800A2-E798-4D5C-8DCF-49908332DF9F";
7.接下来就按照条件搜索周边设备广播出来的服务,协议里面提供了相应的方法:scanForPeripheralsWithServices,当然在搜索之前我们可以把ServiceUUID放进一个数组,ServiceUUID最好宏定义出来,后面会用到很多地方
//自定义一个行为,通过服务搜索外围设备的蓝牙
-(void)scanForPeripheralsWithServices
{
//把需要搜索的Service的UUID放进数组以便管理,如果没有限制的话就不用这一步,到时直接设为nil
NSArray *arrayServiceUUID = [NSArrayarrayWithObjects: [CBUUID UUIDWithString:@"0xFFF0"],nil];
//按照Service的UUID进行搜索
[CM scanForPeripheralsWithServices: arrayServiceUUID options:nil];
[NSTimer scheduledTimerWithTimeInterval:2.0ftarget:selfselector:@selector(scanTimeout:)userInfo:nilrepeats:NO];
}
8.通常中央对外界搜索2秒,如果没有搜索到结果就证明没有外围设备了,那么我们就停止搜索,这样我们需要使用定时器,还有代理的停止搜索方法:
-(void)scanTimeout:(NSTimer *)timer
{
if (CM !=NULL) {
[CMstopScan];//stopScan是系统方法
}else{
NSLog(@" CM is NULL!");
}
NSLog(@"scanTimeout!");
}
NSString *const CBCentralManagerScanOptionAllowDuplicatesKey;
NSString *const CBCentralManagerScanOptionSolicitedServiceUUIDsKey;
9.检测搜索是否发现周边设备蓝牙广播出来的信息,并且打印出来
-(void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
NSMutableString *nsmstring = [NSMutableStringstringWithString:@"\n"];
[nsmstring appendString:@"Peripheral Info:"];
[nsmstring appendFormat:@"advertisementData: %@\n",advertisementData];
[nsmstring appendFormat:@"NAME: %@\n",peripheral.name];
[nsmstring appendFormat:@"RSSI: %@\n",RSSI];
[nsmstring appendString:@"didDiscoverPeripheral\n\n"];
NSLog(@"%@",nsmstring);
}
打印结果如下:
2015-07-24 16:49:29.841 BluetoothDeliver[601:179184] UpdateState:PoweredOn
2015-07-24 16:49:30.099 BluetoothDeliver[601:179184]
Peripheral Info:advertisementData: {
kCBAdvDataIsConnectable = 1;
kCBAdvDataServiceUUIDs = (
FFF0
);
}
NAME: SA10T039275
RSSI: -43
didDiscoverPeripheral
10.接下来就是连接设备