我有两个通过蓝牙连接的 iphone 设备。是否有可能在这些设备之间获得信号强度?如果可能的话,如何?谢谢,KD
问问题
5460 次
1 回答
8
查看通过蓝牙将数据从一台设备传输到另一台设备的 Apple 示例项目。 BTLE 苹果示例代码
您可以通过 RSSI(接收信号强度指示)的值找出信号强度
在示例代码中,您将在收到数据时获得 RSSI 值。在 Project 中的 BTLECentralViewController.m 中检查以下方法:
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI
{
// Reject any where the value is above reasonable range
if (RSSI.integerValue > -15) {
return;
}
// Reject if the signal strength is too low to be close enough (Close is around -22dB)
if (RSSI.integerValue < -35) {
return;
}
NSLog(@"Discovered %@ at %@", peripheral.name, RSSI);
// Ok, it's in range - have we already seen it?
if (self.discoveredPeripheral != peripheral) {
// Save a local copy of the peripheral, so CoreBluetooth doesn't get rid of it
self.discoveredPeripheral = peripheral;
// And connect
NSLog(@"Connecting to peripheral %@", peripheral);
[self.centralManager connectPeripheral:peripheral options:nil];
}
}
每次您从另一台设备收到广告数据时。您将从此收到一个 RSSI 值,您可以找到设备的强度和范围。
还可以查看Wiki 上的 RSSI 详细信息
我希望这会帮助你。
于 2013-01-29T19:36:52.737 回答