How to find the specific BLE 4.0 peripheral from t

2019-06-08 09:46发布

For BLE 4.0, it provides API to discover peripherals with array of service UUID.

I just want to find the specific one. How to achieve this ?

If need assign the identifier to the specific device, how to do it ?

(I think my question need some context of core bluetooth of iOS. )

2条回答
Ridiculous、
2楼-- · 2019-06-08 10:23

Tell me if I'm wrong. You have 2 devices working as central role who wants to connect to one BLE peripheral.

What it is important is the UUID of the services in the BLE peripheral. From your devices in central role you should search peripherals with a wanted UUID Service. Thats all.

To develop with iOS please follow Core Bluetooth Programming Guide. You have a good tutorial there.

As an example of the Apple documentation:

[myCentralManager scanForPeripheralsWithServices:nil options:nil];

In this line of code you can add an Array of UUID objects (CBUUID) instead of nil for scanForPeripheralsWithServices:

查看更多
Explosion°爆炸
3楼-- · 2019-06-08 10:26

The process for reconnecting to known peripherals is described in the Core Bluetooth Programming Guide.

Essentially if you know the UUID of the device you want to reconnect to (which is the identifier property of the CBPeripheral object) then you can use the retrievePeripheralsWithIdentifiers: method of the CBCentralManager to obtain the CBPeripheral object and then attempt a connection -

NSUUID *pid=[[NSUUID alloc]initWithUUIDString:@"45D956BB-75E4-6CEB-C06C-D531B00174E4" ];
NSArray *peripherals=[self.centralManager retrievePeripheralsWithIdentifiers:@[pid]];
if ([peripherals count]>0)
{
      CBPeripheral *peripheral=[peripherals objectAtIndex:0];
      peripheral.delegate=self;
      [self.connectingPeripherals addObject:peripheral];

      NSLog(@"Found peripheral %@ with name %@",peripheral.identifier,peripheral.name);
      [self.centralManager connectPeripheral:peripheral options:nil];
 }

This may not work, and you may have to scan for your peripheral as the identifier of some peripherals (iOS devices in particular) periodically change their UUID.

The programming guide notes -

Note: A peripheral device may not be available to be connected to for a few reasons. For instance, the device may not be in the vicinity of the central. In addition, some Bluetooth low energy devices use a random device address that changes periodically. Therefore, even if the device is nearby, the address of the device may have changed since the last time it was discovered by the system, in which case the CBPeripheral object you are trying to connect to doesn’t correspond to the actual peripheral device. If you cannot reconnect to the peripheral because its address has changed, you must rediscover it using the scanForPeripheralsWithServices:options: method.

You will also have to scan the first time you encounter a peripheral.

查看更多
登录 后发表回答