Git Product home page Git Product logo

Comments (7)

dariuszseweryn avatar dariuszseweryn commented on May 18, 2024 1

Hello there.

Question: Is possible to subscribe to multiple characteristic notifications at once?
Answer: It is possible to subscribe to notifications from multiple characteristics but not in one line.
Explanation: There are almost infinite use cases for the BLE applications and it is impossible to cover them all. I feel that with the current state of the code it is quite easy to implement such a feature but baking it into the library won't benefit many people.

From what I understand you would like to map characteristics values into a POJO model in this scenario either to manually assign a characteristic value to a property or have a model that is very generic (a Map<UUID, byte[]> perhaps). In the first situation you would need to either set notifications by hand or match the resulting byte[] by hand. In the second situation you will end up with something like:

    final UUID serviceUuid = // your service UUID
    final Map<UUID, byte[]> genericModel = new HashMap<>();
    final Observable<RxBleConnection> connectionObservable = // your connectionObservable

    connectionObservable
            .flatMap(connection -> 
                    connection.discoverServices()
                            .flatMap(services -> services.getService(serviceUuid).map(BluetoothGattService::getCharacteristics)) // get characteristics you're interested in
                            .flatMap(Observable::from) // deal with every characteristic separately
                            .flatMap(characteristic -> connection
                                            .setupNotification(characteristic) // setup notification for each
                                            .flatMap(observable -> observable), // to get the raw bytes from notification
                                    Pair::new) // merge characteristic with byte[] to keep track from which characteristic the bytes came
            )
            .subscribe(
                    pair -> genericModel.put(pair.first.getUuid(), pair.second),
                    throwable -> { /* handle errors */}
            ); 

I hope this answers your question.

Best Regards

from rxandroidble.

aldoborrero avatar aldoborrero commented on May 18, 2024

Thanks! It helps! :)

My main concern is that as I'm learning RxJava I missed that.

from rxandroidble.

dariuszseweryn avatar dariuszseweryn commented on May 18, 2024

Just have in mind that Android allows to setup only a finite number of notifications.

from rxandroidble.

aldoborrero avatar aldoborrero commented on May 18, 2024

Yeah I believe that are 4 for version below 4.4 and then incremented the value to 7 from 5.0! But thanks for the remainder :)

from rxandroidble.

aldoborrero avatar aldoborrero commented on May 18, 2024

Hi @dariuszseweryn

I have another related question with what you have shared yesterday:

I can subscribe perfectly to the notifications and I can map those to a pair to latter transform the bytes[] values to meaningful data.

The same applies if I want to read those characteristics that allows reading with the following snippet of code:

    connectionObservable.flatMap(connection ->
        connection.discoverServices()
            .flatMap(services -> services.getService(SERVICE_ID).map(BluetoothGattService::getCharacteristics))
            .flatMap(Observable::from)
            .filter(characteristic -> BleUtils.hasReadProperty(characteristic.getProperties()))
            .flatMap(connection::readCharacteristic, Pair::new)
            .compose(valueAdapterTransformer)
    )
        .subscribe(pair -> logger.d(TAG, "Pair: " + pair));

I would like to upon the first connection: read an amount of characteristics that has the reading property and only after that subscribe to those notifications that have the notification property pretty much as you explained me yesterday.

The thing is that when I do the first part the reading observable won't emit a finish a doOnComplete call as is waiting for more, so I can't kickstart or compose the next operation which is subscribing and listening to changes. I know for sure the amount of characteristic that has the read property but I would like to do it in a generic fashion (i.e it doesn't matter if I have 7 or 15 characteristics that I want read, I only want to read them all, write the pojo values, and after that start listening the notifications).

(Sorry to bother you again with more questions about RxJava than the library itself but I've been searching for examples and I can't find nothing valuable).

Maybe the option is to use an observable that counts the emission of the first one and then after that chain through that to start listening notifications.

How is the best option to achieve that?

BTW I think that this answers would be good to create a Wiki and explain advanced usage of the library (providing more examples to the sample app). I would gladly do it.

Thanks

Edit 1: Updated the title to be more meaningful.

from rxandroidble.

dariuszseweryn avatar dariuszseweryn commented on May 18, 2024

Actually this kind of questions should go to stackoverflow.com with the tag rxandroidble as these are not questions about the library itself but use-cases.

from rxandroidble.

aldoborrero avatar aldoborrero commented on May 18, 2024

Yeah, you're right :)

(I'm going to create the question there and I'll update this comment with the link).

Edit:

Question is asked in StackOverflow.

I'll close this 'non issue' issue.

Thanks!

from rxandroidble.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.