I am working on Android BLE Devices. Right now, I am trying to keep state connected of two BLE devices(eg. two Scales devices or Activity Sensor devices).
Well, I know I can do that by using multiple services where each service contains different BluetoothGatt object for different BLE devices. But I think that isn't a proper way.
Other option I found is managing two different BluetoothGatt objects within one service. But that would be quite complex for me right now.
I analyzed nRF Connect App. In that, they are able to connect multiple BLE Devices using single BluetoothLEService.
Is there any other way to solve this issue?