|
|
|
|
|
BTConnectDevice (Function) In french: BTConnectePériphérique Allows you to be authenticated toward a Bluetooth device.
IF BTConnectDevice(COL_ID, "123") = True THEN
nIDOBEXConnection = OBEXConnect(obexBluetooth, COL_MACAddress)
...
OBEXDisconnect(nIDOBEXConnection)
BTDisconnectDevice(COL_ID)
ELSE
Error("Unable to connect to the Bluetooth device", ErrorInfo(errFullDetails))
END
Syntax
<Result> = BTConnectDevice(<Device identifier> , <Password> [, <Radio identifier>])
<Result>: Boolean - True if the authentication was successful,
- False otherwise. ErrorInfo returns more information on the error.
<Device identifier>: Integer Identifier of the Bluetooth device to use. This identifier is returned by BTListDevice. <Password>: Character string or Secret string Password used for authentication. This password must be identical to the one entered on the Bluetooth device.
New in version 2025Secret strings: If you use the secret string vault, the type of secret string used for this parameter must be "ANSI or Unicode string". To learn more about secret strings and how to use the vault, see Secret string vault. <Radio identifier>: Optional integer Identifier of Bluetooth radio to use. This identifier is returned by BTListRadio. If this parameter is not specified, the choice of radio is automatically performed. Remarks This version only supports Microsoft, Bluesoleil and Broadcom (Widcomm) bluetooth stacks. To know the stack used, call BTStack. Broadcom (Widcomm) stacks are not available in 64-bit mode.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|