我创建了一个Android应用程序,使用蓝牙LE扫描程序扫描BLE。现在我需要我的应用程序来识别信标是否属于iBeacon或Eddystone。到目前为止,我通过解析AD帧成功地确定了ibeacon的UUID,MajorId,MinorId。
答案 0 :(得分:9)
如果您知道所有字段的字节偏移量,则相对容易读取广告的字节数。下面的两个代码片段向您展示了如何解析这些代码片段。第一部分展示了如何使用Android Beacon Library在自己的onLeScan
回调中执行此操作,第二部分展示了如何从头开始自己动手。
要解释布局如何工作,请查看下面的代码。它使用Android Beacon Libray的BeaconParser
类来处理可配置布局的所有解析。 (即使你想按照第二个代码片段所示自己滚动,也值得查看布局表达式,以便了解它们是如何工作的。下面的表达式显示了与iBeacon非常相似的AltBeacon的详细信息。显示了AltBeacon因为讨论其实施没有知识产权限制.AltBeacon和Eddystone都是开源标准。)
第一个布局表达式显示AltBeacon(再次非常类似于iBeacon)有三个标识符(“i”表达式)。第一个(在iBeacon中称为UUID)是16字节,从字节偏移4-19开始。第二个(在iBeacon上称为主要)是从字节偏移20-21开始的2个字节。第三个(在iBeacon上称为minor)是从字节偏移22-23开始的2个字节。
第二个布局表达式显示Eddystone-UID是一个服务广告,其16位服务UUID为0xfeaa,后跟匹配的字节代码0x00。它有两个标识符,第一个称为字节偏移4-13的“命名空间标识符”。第二个标识符称为字节偏移14-19的“实例标识符”。
public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord) {
ArrayList<BeaconParser> beaconParsers = new ArrayList<BeaconParser>();
final String ALTBEACON_LAYOUT = "m:2-3=beac,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25";
final String EDDYSTONE_UID_LAYOUT = "s:0-1=feaa,m:2-2=00,p:3-3:-41,i:4-13,i:14-19";
beaconParsers.add(new BeaconParser().setBeaconLayout(EDDYSTONE_UID_LAYOUT));
beaconParsers.add(new BeaconParser().setBeaconLayout(ALTBEACON_LAYOUT));
Beacon beacon = null;
for (BeaconParser parser : beaconParsers) {
beacon = parser.fromScanData(scanRecord,
rssi, device);
if (beacon != null) {
if (beacon.getServiceUuid() == 0xfeaa) {
// This is Eddystone, which uses a service Uuid of 0xfeaa
Identifier eddystoneNamespaceId = beacon.getId1();
Identifier eddystoneInstanceId = beacon.getId2();
}
else {
// This is another type of beacon like AltBeacon or iBeacon
Identifier uuid = beacon.getId1();
Identifier major = beacon.getId2();
Identifier minor = beacon.getId3();
}
}
}
开源Android Beacon Library处理有关可变长度PDU的所有细节,这些PDU可以稍微改变扫描响应中的字节偏移。您可以在此处查看其BeaconParser如何运作的源代码。
如果你想从头开始自己滚动,最简单的方法是简单地遍历查找你想要找到的模式的字节,然后根据偏移量解析出感兴趣的字节。 (Android Beacon Library使用更强大,更复杂的方法来实际解析各个PDU。)但循环技术仍然有效。
public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord) {
for (int startByte = 0; startByte < scanRecord.length; startByte++) {
if (scanRecord.length-startByte > 19) { // need at least 19 bytes for Eddystone-UID
// Check that this has the right pattern needed for this to be Eddystone-UID
if (scanRecord[startByte+0] == (byte)0xaa && scanRecord[startByte+1] == (byte)0xfe &&
scanRecord[startByte+2] == (byte)0x00) {
// This is an Eddystone-UID beacon.
byte[] namespaceIdentifierBytes = Arrays.copyOfRange(scanRecord, startByte+4, startByte+13);
byte[] instanceIdentifierBytes = Arrays.copyOfRange(scanRecord, startByte+14, startByte+19);
// TODO: do something with the above identifiers here
}
}
if (scanRecord.length-startByte > 24) { // need at least 24 bytes for AltBeacon
// Check that this has the right pattern needed for this to be AltBeacon
// iBeacon has a slightly different layout. Do a Google search to find it.
if (scanRecord[startByte+2] == (byte)0xbe && scanRecord[startByte+3] == (byte)0xac) {
// This is an AltBeacon
byte[] uuidBytes = Arrays.copyOfRange(scanRecord, startByte+4, startByte+19);
byte[] majorBytes = Arrays.copyOfRange(scanRecord, startByte+20, startByte+21);
byte[] minorBytes = Arrays.copyOfRange(scanRecord, startByte+22, startByte+23);
// TODO: do something with the above identifiers here
}
}
}
}
同样,上面的代码显示了如何解析开源AltBeacons(出于知识产权的原因)。要解析iBeacons,您需要对其BeaconLayout进行Google搜索,并对上面的代码进行小幅调整。
答案 1 :(得分:2)
信标可以同时宣传iBeacon和Eddystone。事实上,我参与的一个项目正在使用这样的信标。
如果您使用 nv-bluetooth 库,则可以轻松地从数据包中提取iBeacon和Eddystone。像这样:
// onLeScan() method of BluetoothAdapter.LeScanCallback interface.
public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord)
{
// Parse the payload of the advertisement packet.
List<ADStructure> structures =
ADPayloadParser.getInstance().parse(scanRecord);
// For each AD structure contained in the advertising packet.
for (ADStructure structure : structures)
{
// If the ADStructure instance can be cast to IBeacon.
if (structure instanceof IBeacon)
{
// An iBeacon was found.
IBeacon iBeacon = (IBeacon)structure;
......
}
// If the ADStructure instance can be cast to Eddystone.
else if (structure instanceof Eddystone)
{
if (structure instanceof EddystoneUID)
{
// Eddystone UID
EddystoneUID es = (EddystoneUID)structure;
......
}
else if (structure instanceof EddystoneURL)
{
// Eddystone URL
EddystoneURL es = (EddystoneURL)structure;
......
}
else if (structure instanceof EddystoneTLM)
{
// Eddystone TLM
EddystoneTLM es = (EddystoneTLM)structure;
......
}
}
......
}
......
}
请注意,android.bluetooth.le.ScanRecord
是Android中最差的API之一,因此最好手动解析数据包而不是使用ScanRecord
。
答案 2 :(得分:1)
请阅读有关ScanRecord
https://developer.android.com/reference/android/bluetooth/le/ScanRecord.html的文档。 getManufacturerSpecificData()
方法可能是您正在寻找的方法。