I'm developing an Android application for read/write data for a BLE device. The specification of the device has mentioned one service UUID and two feature UUIDs.
Service UUID: 0xFFF0
TX UUID: 0xFFF6
, RX UUID: 0xFFF7
And bunch of command formats as follows.
For example, for Get time:
Command format: 0x41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 CRC
When running a serviceDiscovery()
there are some additional UUIDs are appeared. But there's no use of them.
Is there any special way to run commands like this in Android?
I'm quite new to Android development. So, can someone help me to overcome this situation?