10

我像这样扫描我的外围设备:

NSDictionary *scanOptions = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO] 
                                                            forKey:CBCentralManagerScanOptionAllowDuplicatesKey];
        // Scan for peripherals with given UUID
        [cm scanForPeripheralsWithServices:[NSArray arrayWithObject:HeliController.serviceUUID] options:scanOptions]

没问题,我找到了外围设备并能够连接到它。正如你所看到的,我给它CBCentralManagerScanOptionAllowDuplicatesKey不允许bool NO超过一个外围设备,但有时didDiscoverPeripheral回调会触发两次。

- (void) centralManager:(CBCentralManager *)central 
  didDiscoverPeripheral:(CBPeripheral *)peripheral 
  advertisementData:(NSDictionary *)advertisementData 
               RSSI:(NSNumber *)RSSI 
{        
if(!discovered){
    discovered = YES;
    NSLog(@"Discovered");

    [cm stopScan];

    [scanButton setTitle:@"Connect" forState:UIControlStateNormal];
}
else if(discovered){
    discovered = YES
    NSLog(@"Already discovered");
}
}

有时我得到

Discovered
Already discovered

作为我的控制台中的输出,并且大多数时候只Discovered显示消息。

在我的外围委托中,我首先发现服务,然后调用[peripheral discoverCharacteristics并且总是发生回调:

- (void) peripheral:(CBPeripheral *)peripheral didDiscoverCharacteristicsForService:(CBService *)service error:(NSError *)error{

NSLog(@"Did discover characteristic for service %@", [service.peripheral UUID]);

for(CBCharacteristic *c in [service characteristics]){
    // We never get here when peripheral is discovered twice
    if([[c UUID] isEqual:myCharacteristicUUID]){

        NSLog(@"Found characteristic");

        self.throttleCharacteristic = c;

    }
}

didDiscoverPeripheral出现两次时,service变成nil在这个方法中,即使peripheral不是(UUID,名称仍然正确)。

重新启动手机或重置网络设置可以暂时解决问题。

我真的需要解决这个问题!谢谢

4

2 回答 2

12

设备在做广告时可能会返回额外的数据。这些可能以不同的数据包到达,在不同的时间到达。在这种情况下,第一次看到设备时首先调用 didDiscoverPeripheral,然后当附加信息可用时再次调用。

CBCentralManagerScanOptionAllowDuplicatesKey 不同。它告诉 CoreBluetooth 在设备再次发布广告时您是否要接收重复的结果。它不会阻止对同一发现序列的 didDiscoverPeripheral 多次调用;它可以防止它重复发现序列。

资料来源: http: //lists.apple.com/archives/bluetooth-dev/2012/Apr/msg00047.html(蓝牙开发上的苹果代表)。

于 2012-07-30T23:44:10.580 回答
6

我不认为这个参数做你认为它做的事情。通过查看它在健康温度计等 Apple 示例中的使用方式,我的理解是,打开此标志可以发现具有相同 UUID 的多个不同外围设备。例如,如果您想编写一个应用程序来查看同一个房间中的四个不同温度计并找到所有温度计,您将需要该参数,以便在找到第一个后扫描不会停止。

在他们的代码中,Apple 避免了这样的重复:

NSMutableArray *peripherals = [self mutableArrayValueForKey:@"thermometers"];
if( ![self.thermometers containsObject:peripheral] )
    [peripherals addObject:peripheral];

如果该设备已存在于阵列中,则不会再次添加该设备。

如果文档在这一点上更清楚,那就太好了。我承认我是根据参数在上下文中的使用方式来猜测的。

于 2012-07-20T22:26:25.223 回答