我的设备变成了ibeacon,它在AltBeacon中显示为iBeacon将应用程序定位为iBeacon,但它在iPhone,iPad和Mac中未检测到。 设备: - 摩托罗拉Moto G XT1033
BeaconTransmitter mBeaconTransmitter = new BeaconTransmitter(
this,
new BeaconParser()
.setBeaconLayout("m:2-3=0215,i:4-19,i:20-21,i:22-23,p:24-24"));
Beacon beacon = new Beacon.Builder()
.setId1("2F234454-CF6D-4A0F-ADF2-F4911BA9FFA6")
.setId2("1")
.setId3("2")
.setManufacturer(0x0000)
// Choose a number of 0x00ff or less as some devices cannot
// detect beacons with a manufacturer code > 0x00ff
.setTxPower(-59)
.setDataFields(Arrays.asList(new Long[] { 0l })).build();
mBeaconTransmitter.startAdvertising(beacon);
答案 0 :(得分:3)
请务必注意,制造商代码字段是Bluetooth Sig分配的公司特定标识符。您可以在此处查看完整的代码列表:
https://www.bluetooth.org/en-us/specification/assigned-numbers/company-identifiers
使用专有信标格式时,您通常希望将公司代码设置为赞助信标格式的公司。