The BLE device has a characteristic where commands can be sent (for example "BAT" as byte array to get the battery level, but it is not the only available command). And I was wondering if I could just activate notifications on the descriptor (cccd uuid) with bytes 0x01, 0x00 and then send the command trough "requestWrite" on characteristic and get the response on "onCharacteristicUpdate".
Would it be something that would work ? Or what would be the way to do it ?