I'm using the Nordic nRF Toolbox Blood Pressure Monitor "BPM" app on my phone and I have the development software running. Things work fine. However, I'm trying to figure out what exactly the complete UUID is for the information that I'm sending across.
All I have been able to find is:
static ble_uuid_t m_adv_uuids[] = /**< Universally unique service identifiers. */
{
{BLE_UUID_BLOOD_PRESSURE_SERVICE, BLE_UUID_TYPE_BLE},
{BLE_UUID_BATTERY_SERVICE, BLE_UUID_TYPE_BLE},
{BLE_UUID_DEVICE_INFORMATION_SERVICE, BLE_UUID_TYPE_BLE}
};
But I want to know what the full 128 bit UUID is so I can begin to write my own program. Along those same lines, if anyone can point me to the function calls to modify them I would appreciate it, but I would like to know where the default ones are coming from as well.
Thanks for the help!