Console#

Introduction#

The VEXcode GO Console is displayed in the Monitor window within VEXcode. It allows you to display text and format printed data in real time. Below is a list of the available blocks for interacting with the console:

Below is a list of all available blocks:

print#

The print block displays text in the Console at the current row.

  print [VEXcode] ▶

Parameters

Description

value

The text, number, or variable value to display.

expanding arrow

Expand the block to read and set cursor to next row to make the cursor move to the next row after this block.

Example

Example coming soon!

set print precision#

The set print precision block sets the precision formatting used for displaying numbers in the Console. This print precision will apply to all subsequently printed numbers.

    set print precision to [0.1 v]

Parameters

Description

precision

Sets the print precision to:

  • 1
  • 0.1
  • 0.01
  • 0.001
  • All Digits

Example

Example coming soon!

clear all rows#

The clear all rows block clears all rows from the Console.

    clear all rows

Parameters

Description

This block has no parameters.

Example

Example coming soon!

set cursor to next row#

The set cursor to next row block moves the cursor to column 1 on the next row in the Console.

    set cursor to next row

Parameters

Description

This block has no parameters.

Example

Example coming soon!

set print color#

The set print color block sets the print color used for displaying text in the Console.

    set print color [black v]

Parameters

Description

color

The color console text will be displayed in:

  • black (default)
  • red
  • green
  • blue

Example

Example coming soon!