import { BluetoothLE } from '@awesome-cordova-plugins/bluetooth-le/ngx';
constructor(public bluetoothle: BluetoothLE, public plt: Platform) {
 this.plt.ready().then((readySource) => {
   console.log('Platform ready from', readySource);
   this.bluetoothle.initialize().then(ble => {
     console.log('ble', ble.status) 
   });
  });
}