ब्लूटूथ लो एनर्जी (BLE) स्लीप मोड में रहकर पावर बचाता है काफ़ी मामलों में मदद मिलती है. यह सिर्फ़ विज्ञापन बनाने और शॉर्ट वीडियो बनाने के लिए इसलिए विज्ञापन, ऊर्जा की खपत और डेटा ट्रांसफ़र करने की बैंडविथ.
ब्लूटूथ 5 का विज्ञापन एक्सटेंशन
Android 8.0, ब्रॉडकास्ट करने वाले ब्लूटूथ 5 के साथ काम करता है BLE के लिए सुधार और सुविधाजनक डेटा विज्ञापन. ब्लूटूथ 5, BLE फ़िजिकल के साथ काम करता है लेयर (पीएचवाई) जो ब्लूटूथ 4.2 की कम ऊर्जा खपत और उपयोगकर्ताओं को चुनने दें बैंडविड्थ या रेंज में बढ़ोतरी होती है. ज़्यादा जानकारी के लिए, यहां जाएं: ब्लूटूथ 5 की मुख्य विशेषताएं.
लागू करना
डिवाइसों के लिए, ब्लूटूथ 5 की नई सुविधाएं अपने-आप उपलब्ध हो जाती हैं
जो Android 8.0 के साथ काम करने वाले ब्लूटूथ कंट्रोलर के साथ चल रहे हों. इनका इस्तेमाल करें
BluetoothAdapter
अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है
नीचे दिए गए तरीके से पता लगाएं कि आपके डिवाइस में ब्लूटूथ 5 की सुविधाएं काम करती हैं या नहीं:
isLe2MPhySupported()
isLeCodedPhySupported()
isLeExtendedAdvertisingSupported()
isLePeriodicAdvertisingSupported()
विज्ञापन सुविधाएं बंद करने के लिए, ब्लूटूथ चिप का इस्तेमाल करें वेंडर के लिए चिप-सेट की सुविधा बंद करनी होगी.
ब्लूटूथ पीएचवाई एक-दूसरे से अलग होते हैं और
हर PHY, Bluetooth SIG से पहले से तय होता है. डिफ़ॉल्ट रूप से, Android 8.0
ब्लूटूथ 4.2 से, Bluetooth LE 1M PHY का उपयोग करता है. कॉन्टेंट बनाने
android.bluetooth.le
अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है
पैकेज, ब्लूटूथ 5 विज्ञापन सुविधाओं की जानकारी देता है
एपीआई:
AdvertisingSet
AdvertisingSetCallback
AdvertisingSetParameters
PeriodicAdvertisingParameters
AdvertisingSet
बनाएं
startAdvertisingSet()
का इस्तेमाल करके ब्लूटूथ विज्ञापन की सेटिंग में बदलाव करने के लिए
android.bluetooth.le.BluetoothLeAdvertiser
में तरीका. भले ही
या इसकी विज्ञापन सुविधाओं के लिए समर्थन बंद है, तो
एपीआई की सुविधाएं 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 के तौर पर जोड़ें. 20 लाख पीएचवाई ऐक्टिव होने पर, विज्ञापन
ब्लूटूथ 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.