What is the difference between plugin BLE and BluetoothLE?

I read the official documentation but I think they are very similar. I don’t know the difference?
Please tell me what characteristics according to choose Suitable for my Bluetooth device.

BluetoothLE has support for both Bluetooth LE Centrals and Peripherals. It wraps this Cordova plugin: https://github.com/randdusing/cordova-plugin-bluetoothle

BLE only seems to support Bluetooth LE Centrals, and wraps https://github.com/don/cordova-plugin-ble-central. Note that there is a separate peripheral plugin: https://github.com/don/cordova-plugin-ble-peripheral but I’m not sure if there is an Ionic Native wrapper for it.

I need both central and peripheral support, so I’m using the BluetoothLE plugin in my app.

1 Like