System.Bluetooth.TBluetoothGattCharacteristic.UUID

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property UUID: TBluetoothUUID read GetUUID;

C++

__property GUID UUID = {read=GetUUID};

Properties

Type Visibility Source Unit Parent
property public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothGattCharacteristic

Description

Returns the UUID of this characteristic. The UUID is the type TBluetoothUUID.

This identifier is represented by a string literal enclosed in brackets. UUIDs must have the form "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}", where each x is an hexadecimal digit (0 through 9 or A through F). For example, the UUID for the Heart Rate Measurement characteristic is {00002A37-0000-1000-8000-00805F9B34FB}.

Visit the official page for more information about standard characteristics: Standard BluetoothLE Characteristics.

See Also