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 );
}
from native import app
def OnStart():
name = app.GetBluetoothName()
app.Alert( name )