Back

GetMacAddress

Returns the alphanumeric MAC address of the device.

  app.GetMacAddress() → string

style should be "00:00:00:00:00:00"

Example - Example



function OnStart()
{
    mac = app.GetMacAddress();
    app.ShowPopup( mac );
}
    Copy     Copy All       Run