我刚刚开始使用iOS的核心蓝牙框架,我正在开发一个需要不断扫描BLE设备的应用程序,以便每隔几分钟可以检索其RSSI号码.
目前我有:
manager = [[CBCentralManager alloc] initWithDelegate:self queue:nil]; NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:FALSE],CBCentralManagerScanOptionAllowDuplicatesKey,nil]; [manager scanForPeripheralsWithServices:nil options:options];
这将启动我的应用程序扫描BLE设备,并在发现设备时调用此委托方法:
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI { NSLog(@"Did discover peripheral. peripheral: %@ RSSi: %@,UUID: %@ advertisementData: %@ ",peripheral,RSSI,peripheral.UUID,advertisementData); //Do something when a peripheral is discovered. RSSiLabel.text = [RSSI stringValue]; [manager retrievePeripherals:[NSArray arrayWithObject:(id)peripheral.UUID]];}
这个方法可以得到我可以显示的外设的RSSI号码.最后一行然后调用这个委托方法:
- (void) centralManager:(CBCentralManager *)central didRetrievePeripherals:(NSArray *)peripherals { NSLog(@"Currently known peripherals :"); int i = 0; for(CBPeripheral *peripheral in peripherals) { NSLog(@"[%d] - peripheral : %@ with UUID : %@",i,peripheral.UUID); } NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:FALSE],nil]; [manager scanForPeripheralsWithServices:nil options:options]; }
这个代码似乎正在工作,大概每1分钟进行一次扫描,但我不完全知道为什么它工作…
核心蓝牙的文档相当稀疏,如果有任何人有任何想法,如何做到这一点,或有一个更好的方式来做我想要完成的事情,我会感谢帮助!
解决方法
您是否尝试将扫描选项更改为YES?
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES],nil]; [manager scanForPeripheralsWithServices:nil options:options];
如果你这样做,你会得到你的“didDiscoverPeripheral”回调与你的iPhone看到的每个广告数据包,通常是大约每100ms(虽然我看到这个回调时间变化相同的设备很多).这包括它看到的每个设备的RSSI.
这应该比您的〜1分钟更新速度快很多.