Back
IsBluetoothOn
IsBluetoothOn returns "true" if Bluetooth is enabled and "false" if not.
app.IsBluetoothOn() ->
boolean
Example - Example
function OnStart()
{
btOn = app.IsBluetoothOn();
app.ShowPopup( btOn );
}
Copy
Copy All
Run