User Tools

Site Tools


Sidebar

Privacy Policy

News

Version 2.50 is out since Jan 1st 2022


Frequently Asked Questions


Namespaces

Note for contributors

If you wish to create a new page in the DroidScript wiki, please click on the most appropriate namespace above and follow the notes for contributors there.

Because of spam, it has been necessary to add a CAPTCHA to the registration form and the save option for editing pages. You will not need to prove you are human if you are logged in, so please register.

Please feel free to improve any existing page, as well as adding new pages to increase the sum of public knowledge about DroidScript.

Formatting Syntax

built_in:nxt_showdevices

ShowDevices

The ShowDevices function shows the user a dialog box that contains a list of NXT bricks which are paired with the phone. The user can then select the brick to connect to via Bluetooth.

nxt.ShowDevices();

Example - Connect to NXT

function OnStart()
{
  nxt = app.CreateNxt();
  app.SetMenu( "Connect" );
}
 
function OnMenu( name )
{
  if( name=="Connect" )
    nxt.ShowDevices();
}

Example - IsConnected Connect / Disconnect to NXT with FontAwesome icons

NxtConnect.js
var nxt, lay;
function OnStart()
{
  lay = app.CreateLayout( "Linear", "VCenter, FillXY" );
 
  //Create Connect button.
  btnConnect = app.CreateButton( "[fa-plug] Connect", 0.5, 0.08, "Gray,FontAwesome" );
  btnConnect.SetMargins( 0.1, 0.01, 0.1, 0.01 );
  btnConnect.SetTextSize( 24 );
  btnConnect.SetOnTouch( btnConnect_OnTouch );  
  lay.AddChild( btnConnect );
 
  app.AddLayout( lay );
 
  nxt = app.CreateNxt();
  nxt.SetOnConnected(onNXTConnected);
}	
 
function onNXTConnected() 
{
    if (nxt.IsConnected()) {
        btnConnect.SetText("[fa-unlink] Disconnect");
        app.ShowPopup("Connected to Bluetooth device: "+nxt.GetBtName()+" : "+nxt.GetBtAddress());
    }
}
 
function btnConnect_OnTouch()
{        
	if (nxt.IsConnected()) {
	    app.ShowPopup( "Disconnectig from Bluetooth device: "+nxt.GetBtName() );
	    nxt.Disconnect();
	    btnConnect.SetText("[fa-plug] Connect");
	} else {
	    //Show list of NXT devices.
	    nxt.ShowDevices();
	}
}
built_in/nxt_showdevices.txt · Last modified: 2015/03/11 05:07 (external edit)