gpt4 book ai didi

ios - 从 BLE 设备获取通知

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

我正在研究 BLE (蓝牙 LE)与硬件设备连接的应用程序。我能够发现并连接到设备,从设备读取数据,将数据写入设备。

我在 Apple 的 BLE 文档中找不到的是,当您靠近设备时,当应用程序关闭时,您如何收到通知。

我知道如何注册 characteristic通知,但此通知仅在应用程序处于后台时发生。

我知道iBeacon可以在应用程序关闭时检测到蓝牙并发送通知,但我想在设备发现带有 UUID 的某个 BLE 时收到通知.

iBeacon,正在使用 BLE 与 UUIDmajor and minor领域,我不需要/不想要。我只想注册来自某个 UUID 的通知来自 BLE。

我这样做了,没有任何回应:

 self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
[self initRegion];

- (void)initRegion
{
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:@"4AD3FADF-F179-4343-0000-000000000000"];
self.beaconRegion = [[CLBeaconRegion alloc] initWithProximityUUID:uuid identifier:@"BLE-NAME"];
[self.locationManager startMonitoringForRegion:self.beaconRegion];

}


- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region {
[self.locationManager startRangingBeaconsInRegion:self.beaconRegion];
NSLog(@"ENTER");

}

-(void)locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region {
[self.locationManager stopRangingBeaconsInRegion:self.beaconRegion];
NSLog(@"EXIT");
}

最佳答案

虽然 iBeacon 和一般的 BLE 外围设备都使用蓝牙,但在 iOS 中它们的处理方式不同。

iBeacons 受 CoreLocation 框架的支持(根据您问题中的代码),而实现 GATT 配置文件的 BLE 外设则受核心蓝牙框架的支持。

Core Bluetooth Programming Guide描述了如何发现并连接到 BLE 外围设备。该指南还包括有关后台处理的部分。

基本上,您可以向目标外设发出“连接”,iOS 将在看到外设时完成连接,即使您的应用程序在后台 - 调用您的委托(delegate)方法来通知您连接。

然而,虽然许多 iBeacon 可以配置相同的 UUID,但外围设备的 UUID 是唯一的,因此除非您之前发现了外围设备,否则您可能无法发出连接。

您可以扫描在后台宣传特定服务的外围设备,并使用它来发现和连接到外围设备

关于ios - 从 BLE 设备获取通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27087214/

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