Read multiple characteristics from an Android device using library RxAndroidBle
问题 I am using the library RxAndroidBle in order to scan devices and then connect to one specific device and read 4 GATT characteristics. I can read one characteristic (Battery Level) ith this code : scanSubscription = rxBleClient.scanBleDevices( new ScanSettings.Builder() .build() ) .observeOn(AndroidSchedulers.mainThread()) .doOnNext( scanResult -> { if(scanResult.getBleDevice().getName() != null){ if(scanResult.getBleDevice().getName().equals("NODE 1")){ Log.e("BLE SCAN", "SUCCESS"); Log.e(