cordova-plugin-bluetoothle
cordova-plugin-bluetoothle copied to clipboard
Bluetooth Low Energy Phonegap Plugin
I have below application configuration, Angular - 10.1.4 Cordova - 9.0.0 Gradle - 5.6.2 build.gradle - defaultBuildToolsVersion="29.0.2" //String defaultMinSdkVersion=22 //Integer - Minimum requirement is Android 5.1 defaultTargetSdkVersion=29 //Integer - We...
These enable working with BLE 5 Extended Advertising: setLegacy(false) - https://developer.android.com/reference/android/bluetooth/le/ScanSettings.Builder#setLegacy(boolean) and BLE 5 Long Range: setPhy(PHY_LE_CODED) https://developer.android.com/reference/android/bluetooth/le/ScanSettings.Builder#setPhy(int) The latter probably also requires a new method for BluetoothAdapter.isLeCodedPhySupported()
Hello! One our client can't scan BLE devices because of the error: "Application registration failed". I've tried to investigate this problem and found that it is an Android issue. There...
Previously it appeared that I had to send an empty services[] array as a parameter in .startScan(), since if I submitted a single 128-bit UUID then no devices would be...
**What I want?** Show the iOS popup only when I start to use BLE features, e.g. initializing bluetoothle. It's important to provide a streamlined permission-granting user experience. **How is it...
I got HTML content containing image and some text. I can print text just fine. I'm experiencing issue with the image. Anyone facing the same issue? Thanks
Hello, I'm trying to use that plugin with Ionic 5. I wrote some code that successfully connect to my device (weight measuring and oximeter). I successfully receive the status "connected"...
ionic code: ``` this.bluetoothle.getAdapterInfo().then((r) => { console.log('getAdapterInfo success:' + JSON.stringify(r)); }).catch((reason) => { console.log('getAdapterInfo error:' + reason); }); ``` and neither log. I found it didn't executed when I set...
Greetings, everyone, I faced an issue here that On iOS, the advertising devices likes to rename itself back to the name of the device, i.e. Rand' iPhone, which is documented...