|
|
|
|
|
BTLEGetADescriptor (Function) In french: BTLERécupèreUnDescripteur Retrieves the descriptor of a Bluetooth Low Energy characteristic corresponding to the specified identifier (UUID).
MyDevice is btleDevice
...
MyDesc is btleDescriptor
MyDesc = BTLEGetADescriptor(MyDevice.Service[1].Characteristic[1], "AD09")
IF ErrorOccurred THEN
Error("The descriptor does not exist.")
RETURN
END
...
Syntax
<Result> = BTLEGetADescriptor(<Characteristic> , <Identifier>)
<Result>: btleDescriptor variable btleDescriptor variable corresponding to the information of requested descriptor. If no descriptor corresponds to the specified identifier, the ErrorOccurred variable is set to True. <Characteristic>: btleCharacteristic variable Name of the btleCharacteristic variable corresponding to the characteristic used. <Identifier>: Character string Identifier (UUID) of descriptor to retrieve. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|