我目前正在创建可以使用蓝牙设备的iPhone应用程序(Xcode 4.3.1,IOS 5)!这个应用程序的主要目标是室内导航(建筑物内的GPS不是很准确)。
我在这里看到的唯一解决方案(将我的应用程序保存在AppStore上)是尝试扫描可用的蓝牙设备!
我尝试使用CoreBluetooth框架,但我没有获得可用设备的列表! 也许我没有正确使用这些功能
#import <UIKit/UIKit.h>
#import <CoreBluetooth/CoreBluetooth.h>
@interface AboutBhyperView : UIViewController <CBPeripheralDelegate, CBCentralManagerDelegate>
{
CBCentralManager *mgr;
}
@property (readwrite, nonatomic) CBCentralManager *mgr;
@end
- (void)viewDidLoad
{
[super viewDidLoad];
mgr = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
}
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI {
NSLog([NSString stringWithFormat:@"%@",[advertisementData description]]);
}
-(void)centralManager:(CBCentralManager *)central didRetrievePeripherals:(NSArray *)peripherals{
NSLog(@"This is it!");
}
- (void)centralManagerDidUpdateState:(CBCentralManager *)central{
NSString *messtoshow;
switch (central.state) {
case CBCentralManagerStateUnknown:
{
messtoshow=[NSString stringWithFormat:@"State unknown, update imminent."];
break;
}
case CBCentralManagerStateResetting:
{
messtoshow=[NSString stringWithFormat:@"The connection with the system service was momentarily lost, update imminent."];
break;
}
case CBCentralManagerStateUnsupported:
{
messtoshow=[NSString stringWithFormat:@"The platform doesn't support Bluetooth Low Energy"];
break;
}
case CBCentralManagerStateUnauthorized:
{
messtoshow=[NSString stringWithFormat:@"The app is not authorized to use Bluetooth Low Energy"];
break;
}
case CBCentralManagerStatePoweredOff:
{
messtoshow=[NSString stringWithFormat:@"Bluetooth is currently powered off."];
break;
}
case CBCentralManagerStatePoweredOn:
{
messtoshow=[NSString stringWithFormat:@"Bluetooth is currently powered on and available to use."];
[mgr scanForPeripheralsWithServices:nil options:nil];
//[mgr retrieveConnectedPeripherals];
//--- it works, I Do get in this area!
break;
}
}
NSLog(messtoshow);
}
我不确定这一行,如何传递正确的参数?
[mgr scanForPeripheralsWithServices:nil options:nil];
我看了一下苹果参考..我仍然不明白那是什么CBUUID ??? 每个设备都有一些蓝牙ID?我在哪里可以找到它?
- (void)scanForPeripheralsWithServices:(NSArray *)serviceUUIDs options:(NSDictionary *)options;
参数 serviceUUIDs - 应用程序感兴趣的一组CBUUID。 options - 用于自定义扫描的字典,请参阅CBCentralManagerScanOptionAllowDuplicatesKey。
在IOS上还有其他方法可以使用蓝牙吗?我的意思是,旧的框架不使用BLE 4.0!
任何建议都将不胜感激!
谢谢!
答案 0 :(得分:21)
This guide看起来很有希望使用蓝牙3.0。请记住,CoreBluetooth框架仅适用于低功耗蓝牙(4.0)。在bluetooth.org's dev-pages,您可以看到全局定义服务的一些示例,正如关阳所提到的,您可以看到心率服务是0x180D。 UUID的单位由制造商定义。
这是一个代码片段,可能会帮助您。
// Initialize a private variable with the heart rate service UUID
CBUUID *heartRate = [CBUUID UUIDWithString:@"180D"];
// Create a dictionary for passing down to the scan with service method
NSDictionary *scanOptions = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO] forKey:CBCentralManagerScanOptionAllowDuplicatesKey];
// Tell the central manager (cm) to scan for the heart rate service
[cm scanForPeripheralsWithServices:[NSArray arrayWithObject:heartRate] options:scanOptions]
答案 1 :(得分:15)
在蓝牙中,有“服务”。设备发布1..N
个服务,每个服务都具有1..M
个特征。每项服务都有一个唯一的标识符,称为 UUID 。
例如,提供服务“心率”的心率蓝牙传感器会发布 UUID 0x180D 的服务。
(更多服务here)
因此,当您执行搜索时,您必须提供 UUID 作为条件,告知要搜索的服务。
答案 2 :(得分:10)
你应该看看one of the examples。这是相关的一行:
[manager scanForPeripheralsWithServices:[NSArray arrayWithObject:[CBUUID UUIDWithString:@"180D"]] options:nil];
(我知道这是一个Mac OS X示例,但iOS CoreBluetooth API非常相似。)
CBUUID识别您感兴趣的服务,而不是设备。标准服务具有16位UUID,在这种情况下,心率监视器为0x180d,设备信息可能为0x180a,而专有服务具有128位UUID(16字节)。
大多数设备都会实施设备信息服务,因此,如果您只是在寻找任何设备,可以尝试[CBUUID UUIDWithString:@"180A"]
。
答案 3 :(得分:3)
尝试在扫描设备时提供此功能
NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:NO], CBCentralManagerScanOptionAllowDuplicatesKey, nil];
[self.centralManager scanForPeripheralsWithServices:nil options:options];
您将能够以didDiscoverPeripheral
委托方法
答案 4 :(得分:0)
保持冷静并使用https://github.com/l0gg3r/LGBluetooth
你需要做的一切
[[LGCentralManager sharedInstance] scanForPeripheralsByInterval:4
completion:^(NSArray *peripherals) {
}];