Android Ble - How Is Large Characteristic Value Read In Chunks (using An Offset)?
I am working with the Android SDK's android.bluetooth and android.bluetooth.le APIs. I want to implement an app (takes central role, and connects to a BLE peripheral to read charac
Solution 1:
Just call readCharacteristic and it will in the background read all chunks. When all chunks are read, onCharacteristicRead will be called.
Post a Comment for "Android Ble - How Is Large Characteristic Value Read In Chunks (using An Offset)?"