Back

GetBluetoothAddress

Hello World

Returns the hexadecimal Bluetooth address of the device, following the pattern “00:00:00:00:00:00”.

app.GetBluetoothAddress() → string

See Also: CreateBluetoothSerial

Example - Show Bluetooth Address

function OnStart()
{
    var addr = app.GetBluetoothAddress();
    app.Alert( addr );
}
    Copy     Copy All       Run