Identity BlueTooth BLE设备连接在具有相同服务和特性的多个设备中?

时间:2012-10-03 00:33:09

标签: ios core-bluetooth

我有多个具有相同服务和特征的BLE设备。我可以扫描和连接多个设备。连接后,尝试通过发送命令区分每个,但它不起作用。它与单个设备完美配合。这是套接字连接吗?就像服务器生成子线程一样,每个客户端都可以通过线程维护连接。请提供有关如何识别每个设备的一些提示。

我创建的CBCentralManager实例是单例。

+ (id) sharedInstance
{
    static BLEConnectionManager *this   = nil;

    if (!this)  {
        this = [[BLEConnectionManager alloc] init];
    }
    else  {
        [this scanDevice];
    }

    return this;
}

-(void) scanDevice {
    [centralManager scanForPeripheralsWithServices:nil options:0];
}

- (id) init
{
    centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
    peripherals = [[NSMutableArray alloc] init];

    [centralManager scanForPeripheralsWithServices:nil options:0];
    return self;
}

=== 修改

这会起作用吗?在为每个设备建立连接之后,我将在didConnectPeripheral委托方法中创建实例处理服务和特性,例如Apple提供的temperatureSensor示例。因此每个设备分别保持连接。

- (void) centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral  
{
    service = [[[LeTemperatureAlarmService alloc] initWithPeripheral:peripheral  controller:peripheralDelegate] autorelease];
[service start];
}

0 个答案:

没有答案