gpt4 book ai didi

ios - iOS 下 altBeacons 上的 Major 和 Minor

转载 作者:行者123 更新时间:2023-11-28 21:50:23 25 4
gpt4 key购买 nike

有没有办法找出 altBeacon 的主要值和次要值?我正在使用这个库 ( https://github.com/CharruaLab/AltBeacon ) 来检测附近的 BLE 设备(无论是否有信标)。检测到信标,我知道它们的 uuid。我可以使用 iOS CoreBluetooth 框架提取主要值和次要值吗?

更新:代码看起来不错。看起来找出主要或次要的唯一方法是请求信标的数据,因为它在下面接受的答案中完成。但是在这种情况下,信标本身不一定会响应您。

最佳答案

仅适用于 iBeacon:


覆盖下面的 CLLocationManager 委托(delegate)方法,当您能够检测到信标时,将调用此方法。

-(void)locationManager:(CLLocationManager*)manager
didRangeBeacons:(NSArray*)beacons
inRegion:(CLBeaconRegion*)region {
// Beacon found!

CLBeacon *foundBeacon = [beacons firstObject];

// You can retrieve the beacon data from its properties
NSString *uuid = foundBeacon.proximityUUID.UUIDString;
NSString *major = [NSString stringWithFormat:@"%@", foundBeacon.major];
NSString *minor = [NSString stringWithFormat:@"%@", foundBeacon.minor];
}

要使用 Core 定位框架检测信标,您需要在 viewDidLoad 方法中添加以下代码。

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.

// Initialize location manager and set ourselves as the delegate
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;

// Create a NSUUID with the same UUID as the broadcasting beacon
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:@"XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"];

// Setup a new region with that UUID and same identifier as the broadcasting beacon
self.myBeaconRegion = [[CLBeaconRegion alloc] initWithProximityUUID:uuid
identifier:@"com.app.identifier"];

// Tell location manager to start monitoring for the beacon region
[self.locationManager startMonitoringForRegion:self.myBeaconRegion];

// Check if beacon monitoring is available for this device
if (![CLLocationManager isMonitoringAvailableForClass:[CLBeaconRegion class]]) {

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Monitoring not available" message:nil delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil];
[alert show];
}
}

对于蓝牙设备:


使用两个委托(delegate) CBCentralManagerDelegateCBPeripheralDelegate 扩展 View Controller

viewDidLoad 中创建 CBCentralManager 对象。

_centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];

并覆盖以下方法(scan 方法除外):

- (void)centralManagerDidUpdateState:(CBCentralManager *)central {
if (central.state != CBCentralManagerStatePoweredOn) {
return;
}
// The state must be CBCentralManagerStatePoweredOn...
// ... so start scanning
[self scan];
}

- (void) scan {

// UUID for peripheral services
[self.centralManager scanForPeripheralsWithServices:[NSArray arrayWithObject:[CBUUID UUIDWithString:@"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXX"]] options:nil];
NSLog(@"Scanning started");
}

- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI {

NSLog(@"Discovered %@ at %@", peripheral.name, RSSI);

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.UUID);
[self.centralManager connectPeripheral:peripheral options:nil];
}
}

- (void)centralManager:(CBCentralManager *)central didConnectPeripheral:(CBPeripheral *)peripheral {
NSLog(@"Peripheral Connected");

// Stop scanning
[self.centralManager stopScan];
NSLog(@"Scanning stopped");

// Make sure we get the discovery callbacks
peripheral.delegate = self;
[peripheral discoverServices:nil];
}

关于ios - iOS 下 altBeacons 上的 Major 和 Minor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28582532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com