Back

GetBluetoothName

Hello World

Returns the Bluetooth name of the device.

app.GetBluetoothName() → string

See Also: CreateBluetoothSerial

Example - Show Bluetooth Name

function OnStart()
{
    var name = app.GetBluetoothName();
    app.Alert( name );
}
    Copy     Copy All       Run