我想知道iphone 4s可以连接两个蓝牙4.0设备吗?
我使用 Corebluetooth.framework 连接我的 bluetooth4.0 设备,现在我有疑问,如果我们有两个设备,我可以同时连接吗?
非常感谢!
我想知道iphone 4s可以连接两个蓝牙4.0设备吗?
我使用 Corebluetooth.framework 连接我的 bluetooth4.0 设备,现在我有疑问,如果我们有两个设备,我可以同时连接吗?
非常感谢!
是的。
例如,在http://developer.apple.com/library/mac/#samplecode/HeartRateMonitor/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40011322查看 Apple 的心率监测器示例。在 HeartRateMonitorAppDelegate.m 中,您会发现以下方法收集多个设备:
- (void) centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)aPeripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
NSMutableArray *peripherals = [self mutableArrayValueForKey:@"heartRateMonitors"];
if( ![self.heartRateMonitors containsObject:aPeripheral] )
[peripherals addObject:aPeripheral];
/* Retreive already known devices */
if(autoConnect)
{
[manager retrievePeripherals:[NSArray arrayWithObject:(id)aPeripheral.UUID]];
}
}
在这个特定的示例中,该应用程序仅与一个心率监测器连接,但您可以查看代码并轻松了解它如何连接到两个,假设您愿意更新 UI 以显示两个心率。
如果 iPhone 设备扮演主机角色,您可以连接。一台从设备只能与一台主设备连接。包括 iPhone 设备在内的 BLE 设备可以同时扮演主从角色。有关 BLE 设备连接的更多信息,您可以点击此链接。