I'm trying to build an android app that uses the BluetoothLE. In tutorials they use a 128bit UUID but I only have the 16 bit UUID. I have to create a new 128 bit UUID using the service UUID and the Bluetooth Base.
Example :
- Alert Notification Service UUID (16bit) => 0x1811
- Bluetooth Base UUID (128bit) => 00000000-0000-1000-8000-00805F9B34FB
By combining those two UUIDs, we receive...
- Alert Notification Service UUID (128bit) => 00001811-0000-1000-8000-00805F9B34FB
Is there a proper way to do this?