Console
The DUELink Console is an online tool with several functionalities:
- Firmware Update
- Driver Update
- Script
RecordingMode access - Script
ImmediateMode access
Firmware Update
Select and load the appropriate firmware to your device. While there are multiple ways to load a firmware onto DUELink modules, using the console is the easiest way.

Visit the Loader page for full details on firmware updates.
Driver Update
Drivers simplify the use of modules. The console can automatically fetch and load the latest module.

Visit the Driver Scripts page to learn more.
Drivers are always loaded in Region 0, leaving Region 1 for user code. Using regions is fully supported in the Console, under the Regions panel.

The Regions page has more details.
Recording Mode
The console helps in recording, modifying and executing scripts. Connect your module to a PC and then click Connectbutton.

Select one of the built-in Demo scripts, found in the top menu.

Click the Record button to send the script to the module's memory.

You can now Run the code!

The module will automatically run a loaded script on power up.
You can use the Stop button to terminate a running program.

It is possible to read back a script from a module, using the List button.

Immediate Mode
The immediate text box sends and runs the code immediately on the DUELink hardware.

Try statled(200,200,50) to blink the STAT LED 50 times.
The DUELink Log Panel is where DUELink hardware will talk back to the console. For example, Print() function will output directly in this window.
# Run this and observe the Log Panel
Print("This is where log outputs appear")
The Log Panel will show the output.
