iOS蓝牙项目开发

最近公司做一个项目用到蓝牙的知识,这里简单的记录一下和开发过程中遇到的一些问题。
一、基础知识
蓝牙(Bluetooth®):是一种无线技术标准,可实现固定设备、移动设备和楼宇个人域网之间的短距离数据交换(使用2.4—2.485GHz的ISM波段的UHF无线电波)。蓝牙技术最初由电信巨头[爱立信公司](file:///view/1066191.htm)于1994年创制,当时是作为[RS232](file:///view/196461.htm)数据线的替代方案。蓝牙可连接多个设备,克服了数据同步的难题。
蓝牙常见名称和缩写
MFI : make for ipad ,iphone, itouch 专们为苹果设备制作的设备
BLE :buletouch low energy,蓝牙4.0设备因为低耗电,所以也叫做BLE
peripheral:被连接的设备为perilheral(外设)
central:中心
service and characteristic : 服务和特征 每个设备会提供服务和特征,类似于服务端的api,但是机构不同。每个外设会有很多服务,每个服务中包含很多字段,这些字段的权限一般分为 读read,写write,通知notiy几种,就是我们连接设备后具体需要操作的内容。
Description 每个characteristic可以对应一个或多个Description用户描述characteristic的信息或属性
二、开发

  1. 添加location权限
    找到project目录下Supporting Files -> Info.plist -> 右键空白"Add Row" -> 输入“NSLocationWhenInUseUsageDescription”,value为提示信息,可以为空。
  2. 添加CoreBluetooth.framework
    Build Phases -> Link Binary With Libraries -> add "CoreLocation.framework"
  3. 引入库#import
    4.设置蓝牙设备管理对象 CBCentralManager *manager;
    5.设置代理 manager = [[CBCentralManager alloc]initWithDelegate:self queue:dispatch_get_main_queue()];
    6.实现代理方法
-(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");
            //开始扫描周围的外设
            /*
             第一个参数nil就是扫描周围所有的外设,扫描到外设后会进入- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI;
             */
            [manager scanForPeripheralsWithServices:nil options:nil];
            break;
        default:
            break;
    }
}

//扫描到设备会进入方法

-(void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI{
    [self.beaconArr addObject:peripheral];//将设备添加到数据源
    if ([peripheral.name isEqualToString:@"BC01"]) {//过滤蓝牙设备
//advertisementData 设备信息
        NSLog(@"-------- %@",advertisementData);
        [manager stopScan];
        [_tableView reloadData];
    }
}

//连接外设成功的委托

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral{
    NSLog(@">>>连接到名称为(%@)的设备-成功   *******     %@  ------ %@",peripheral.name,peripheral,central);
}

//外设连接失败的委托

- (void)centralManager:(CBCentralManager *)central didFailToConnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error{
    
    NSLog(@">>>连接到名称为(%@)的设备-失败,原因:%@",[peripheral name],[error localizedDescription]);
}

//断开外设的委托

- (void)centralManager:(CBCentralManager *)central didDisconnectPeripheral:(CBPeripheral *)peripheral error:(NSError *)error{
    
    NSLog(@">>>外设连接断开连接 %@: %@\n", [peripheral name], [error localizedDescription]);
    
}

//蓝牙连接

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    CBPeripheral *peripheral = [self.beaconArr objectAtIndex:indexPath.row];
//蓝牙连接
    [manager connectPeripheral:peripheral options:nil];
}

持续更新~

你可能感兴趣的:(iOS蓝牙项目开发)