การโฆษณาบลูทูธพลังงานต่ำ

บลูทูธพลังงานต่ำ (BLE) จะประหยัดพลังงานโดยใช้โหมดสลีปโหมดเกือบตลอดเวลา ระบบมักจะทำงานเพื่อทำให้โฆษณาและการเชื่อมต่อ สั้นเท่านั้น โฆษณาจึงส่งผลต่อทั้งการใช้พลังงานและ แบนด์วิดท์การโอนข้อมูล

ส่วนขยายการโฆษณาด้วยบลูทูธ 5

Android 8.0 รองรับบลูทูธ 5 ซึ่งมีการปรับปรุงการออกอากาศและการโฆษณาข้อมูลที่ยืดหยุ่นสำหรับ BLE บลูทูธ 5 รองรับเลเยอร์ทางกายภาพ (PHY) ของ BLE ที่คงการใช้พลังงานลดลงของบลูทูธ 4.2 เอาไว้ได้ และให้ผู้ใช้เลือกแบนด์วิดท์หรือระยะสัญญาณที่เพิ่มขึ้นได้ ดูข้อมูลเพิ่มเติมได้ใน ข้อมูลจำเพาะหลักของบลูทูธ 5

การใช้งาน

ฟีเจอร์ใหม่ของบลูทูธ 5 พร้อมให้ใช้งานโดยอัตโนมัติสำหรับอุปกรณ์ที่ใช้ Android 8.0 ซึ่งมีตัวควบคุมบลูทูธที่เข้ากันได้ ใช้วิธีการ BluetoothAdapter ต่อไปนี้เพื่อตรวจสอบว่าอุปกรณ์รองรับฟีเจอร์ของบลูทูธ 5 หรือไม่

  • isLe2MPhySupported()
  • isLeCodedPhySupported()
  • isLeExtendedAdvertisingSupported()
  • isLePeriodicAdvertisingSupported()

หากต้องการปิดใช้ฟีเจอร์โฆษณา โปรดทำงานร่วมกับผู้ให้บริการชิปบลูทูธเพื่อปิดใช้การรองรับชุดชิป

PHY ของบลูทูธจะแยกกันต่างหาก และลักษณะการทำงานของ PHY แต่ละรายการจะกำหนดไว้ล่วงหน้าโดย Bluetooth SIG โดยค่าเริ่มต้น Android 8.0 จะใช้บลูทูธ LE 1M PHY จากบลูทูธ 4.2 แพ็กเกจ android.bluetooth.le จะแสดงฟีเจอร์โฆษณาของ Bluetooth 5 ผ่าน API ต่อไปนี้

  • AdvertisingSet
  • AdvertisingSetCallback
  • AdvertisingSetParameters
  • PeriodicAdvertisingParameters

สร้าง AdvertisingSet เพื่อแก้ไขการตั้งค่าโฆษณาบลูทูธโดยใช้เมธอด startAdvertisingSet() ใน android.bluetooth.le.BluetoothLeAdvertiser แม้ว่าการรองรับบลูทูธ 5 หรือฟีเจอร์โฆษณาของบลูทูธจะถูกปิดใช้ แต่ฟีเจอร์ของ API ก็ใช้กับ LE 1M PHY ได้ด้วย

ตัวอย่าง

แอปตัวอย่างนี้ใช้ Bluetooth LE 1M PHY เพื่อการโฆษณา

  // Start legacy advertising. Works for devices with 5.x controllers,
  // and devices that support multi-advertising.

  void example1() {
   BluetoothLeAdvertiser advertiser =
      BluetoothAdapter.getDefaultAdapter().getBluetoothLeAdvertiser();

   AdvertisingSetParameters parameters = (new AdvertisingSetParameters.Builder())
           .setLegacyMode(true) // True by default, but set here as a reminder.
           .setConnectable(true)
           .setInterval(AdvertisingSetParameters.INTERVAL_HIGH)
           .setTxPowerLevel(AdvertisingSetParameters.TX_POWER_MEDIUM)
           .build();

   AdvertiseData data = (new AdvertiseData.Builder()).setIncludeDeviceName(true).build();

   AdvertisingSetCallback callback = new AdvertisingSetCallback() {
       @Override
       public void onAdvertisingSetStarted(AdvertisingSet advertisingSet, int txPower, int status) {
           Log.i(LOG_TAG, "onAdvertisingSetStarted(): txPower:" + txPower + " , status: "
             + status);
           currentAdvertisingSet = advertisingSet;
       }

       @Override
       public void onAdvertisingDataSet(AdvertisingSet advertisingSet, int status) {
           Log.i(LOG_TAG, "onAdvertisingDataSet() :status:" + status);
       }

       @Override
       public void onScanResponseDataSet(AdvertisingSet advertisingSet, int status) {
           Log.i(LOG_TAG, "onScanResponseDataSet(): status:" + status);
       }

       @Override
       public void onAdvertisingSetStopped(AdvertisingSet advertisingSet) {
           Log.i(LOG_TAG, "onAdvertisingSetStopped():");
       }
   };

   advertiser.startAdvertisingSet(parameters, data, null, null, null, callback);

   // After onAdvertisingSetStarted callback is called, you can modify the
   // advertising data and scan response data:
   currentAdvertisingSet.setAdvertisingData(new AdvertiseData.Builder().
     setIncludeDeviceName(true).setIncludeTxPowerLevel(true).build());
   // Wait for onAdvertisingDataSet callback...
   currentAdvertisingSet.setScanResponseData(new
     AdvertiseData.Builder().addServiceUuid(new ParcelUuid(UUID.randomUUID())).build());
   // Wait for onScanResponseDataSet callback...

   // When done with the advertising:
   advertiser.stopAdvertisingSet(callback);
}

แอปตัวอย่างนี้ใช้ BLE 2M PHY เพื่อการโฆษณา ก่อนอื่นแอปจะ ตรวจสอบก่อนว่าอุปกรณ์รองรับฟีเจอร์ที่มีการใช้ หากรองรับฟีเจอร์โฆษณา แอปจะกำหนดค่า BLE 2M PHY เป็น PHY หลัก ขณะที่ 2M PHY ทำงานอยู่ โฆษณาไม่รองรับตัวควบคุมบลูทูธ 4.x จึงตั้งค่า setLegacyMode เป็น false ตัวอย่างนี้จะแก้ไขพารามิเตอร์ในขณะที่โฆษณา และหยุดโฆษณาชั่วคราวด้วย

void example2() {
   BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
   BluetoothLeAdvertiser advertiser =
     BluetoothAdapter.getDefaultAdapter().getBluetoothLeAdvertiser();

   // Check if all features are supported
   if (!adapter.isLe2MPhySupported()) {
       Log.e(LOG_TAG, "2M PHY not supported!");
       return;
   }
   if (!adapter.isLeExtendedAdvertisingSupported()) {
       Log.e(LOG_TAG, "LE Extended Advertising not supported!");
       return;
   }

   int maxDataLength = adapter.getLeMaximumAdvertisingDataLength();

   AdvertisingSetParameters.Builder parameters = (new AdvertisingSetParameters.Builder())
           .setLegacyMode(false)
           .setInterval(AdvertisingSetParameters.INTERVAL_HIGH)
           .setTxPowerLevel(AdvertisingSetParameters.TX_POWER_MEDIUM)
           .setPrimaryPhy(BluetoothDevice.PHY_LE_1M)
           .setSecondaryPhy(BluetoothDevice.PHY_LE_2M);

   AdvertiseData data = (new AdvertiseData.Builder()).addServiceData(new
     ParcelUuid(UUID.randomUUID()),
           "You should be able to fit large amounts of data up to maxDataLength. This goes
           up to 1650 bytes. For legacy advertising this would not
           work".getBytes()).build();

   AdvertisingSetCallback callback = new AdvertisingSetCallback() {
       @Override
       public void onAdvertisingSetStarted(AdvertisingSet advertisingSet, int txPower, int status) {
           Log.i(LOG_TAG, "onAdvertisingSetStarted(): txPower:" + txPower + " , status: "
            + status);
           currentAdvertisingSet = advertisingSet;
       }

       @Override
       public void onAdvertisingSetStopped(AdvertisingSet advertisingSet) {
           Log.i(LOG_TAG, "onAdvertisingSetStopped():");
       }
   };

   advertiser.startAdvertisingSet(parameters.build(), data, null, null, null, callback);

   // After the set starts, you can modify the data and parameters of currentAdvertisingSet.
   currentAdvertisingSet.setAdvertisingData((new
     AdvertiseData.Builder()).addServiceData(new ParcelUuid(UUID.randomUUID()),
           "Without disabling the advertiser first, you can set the data, if new data is
            less than 251 bytes long.".getBytes()).build());

   // Wait for onAdvertisingDataSet callback...

   // Can also stop and restart the advertising
   currentAdvertisingSet.enableAdvertising(false, 0, 0);
   // Wait for onAdvertisingEnabled callback...
   currentAdvertisingSet.enableAdvertising(true, 0, 0);
   // Wait for onAdvertisingEnabled callback...

   // Or modify the parameters - i.e. lower the tx power
   currentAdvertisingSet.enableAdvertising(false, 0, 0);
   // Wait for onAdvertisingEnabled callback...
   currentAdvertisingSet.setAdvertisingParameters(parameters.setTxPowerLevel
     (AdvertisingSetParameters.TX_POWER_LOW).build());
   // Wait for onAdvertisingParametersUpdated callback...
   currentAdvertisingSet.enableAdvertising(true, 0, 0);
   // Wait for onAdvertisingEnabled callback...

   // When done with the advertising:
   advertiser.stopAdvertisingSet(callback);
}

การยืนยัน

เรียกใช้ การทดสอบผลิตภัณฑ์บลูทูธที่เกี่ยวข้องเพื่อยืนยันความเข้ากันได้ของอุปกรณ์กับบลูทูธ 5