Console#

Introduction#

The VEXcode VR 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.

打印 [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

当开始 :: hat events
[Display a message on the console.]
打印 [Hello, Robot!] ▶

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.

设定光标至下一行

Parameters

Description

This block has no parameters.

Example

When started, prints ‘Line 1’ on the console, moves the cursor to the next row, and then prints ‘Line 2’.#
当开始 :: hat events
[Display two lines of text.]
打印 [Line 1] ▶
设定光标至下一行
打印 [Line 2] ▶

clear all rows#

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

清除所有行

Parameters

Description

This block has no parameters.

Example

当开始 :: hat events
[Clear a console message after 2 seconds.]
打印 [Hello, Robot!] ▶
等待 [2] 秒
清除所有行

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.

设定打印精度为 [0.1 v]

Parameters

Description

precision

Sets the print precision to:

  • 1
  • 0.1
  • 0.01
  • 0.001
  • All Digits

Example

When started, sets print precision to two decimal places and prints 1/3 as 0.33 on the console.#
当开始 :: hat events
[Print 1/3 as 0.33.]
设定打印精度为 [0.01 v]
打印 ([1] [math_division v] [3]) ▶

set print color#

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

设定打印颜色为 [black v]

Parameters

Description

color

The color console text will be displayed in:

  • black (default)
  • red
  • green
  • blue

Example

当开始 :: hat events
[Display a green message.]
设定打印颜色为 [绿色 v]
打印 [I am green!] ▶