Get characteristic gatt from Notification
I'm using RxAndroidBle with kotlin.
So far I couls set multiple notifications and i'm receiving them.
How can i map the notification to it's specific characteristic?
So far:
enter code here connectionObserver
.flatMap { rxBleConnection ->
rxBleConnection.discoverServices().flatMap { services -> services.getService(ServiceUUID).map(BluetoothGattService::getCharacteristics) }
.flatMapObservable { s -> fromIterable(s) }...