Robot Specific Blocks#

Introduction#

The VIQRC 25-26 Mix & Match Playground features blocks exclusive to the build designed for this Playground, including two motor options, IQ AI Vision Sensor, Optical Sensor, and Touch LED.

All standard VEXcode VR Blocks are available for use in the VIQRC 25-26 Mix & Match Playground.

Below is a list of all available Playground specific Blocks:

Motion – Move and track the robot’s motors.

  • Actions

    • spin – Spins the selected motor or motor group indefinitely.

    • spin for – Spins a motor or group for a specific distance in degrees or turns.

    • spin to position – Spins a motor or motor group to a set position.

    • stop motor – Stops a specific motor or motor group from spinning.

  • Settings

    • set motor velocity – Sets the speed of a motor or motor group as a percentage.

    • set motor timeout – Limits how long a motor block waits before giving up if movement is blocked.

  • Position

    • motor position – Returns the motor’s current rotational position in degrees or turns.

    • set motor position – Sets the encoder value of a motor or motor group.

  • Values

    • motor is done? – Returns a Boolean indicating whether the motor is no longer spinning.

    • motor is spinning? – Returns a Boolean indicating whether the motor is currently spinning.

    • motor velocity – Returns the motor’s current velocity in %.

AI Vision – Capture and analyze objects using the IQ AI Vision Sensor.

Sensing - Utilize the robot’s various sensors.

Motion#

Actions#

spin#

The spin block spins a selected motor or motor group in a specified direction using the current motor velocity.

    spin [ClawMotor v] [open v]

Parameters

Description

motor

The motor or motor group to spin:

  • ClawMotor
  • LiftMotor

direction

The direction to spin:

    ClawMotor
    • open
    • close
    LiftMotor
    • down
    • up

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

spin for#

The spin for block spins a selected motor or motor group for a specific amount of rotation using the current motor velocity, measured in degrees or turns.

    spin [ClawMotor v] [open v] for (90) [degrees v] ▶

Parameters

Description

motor

The motor or motor group to spin:

  • ClawMotor
  • LiftMotor

direction

The direction to spin:

    ClawMotor
    • open
    • close
    LiftMotor
    • down
    • up

distance

The rotation amount, as an integer or decimal.

unit

The unit of measurement representing the distance:

  • degrees
  • turns

expanding arrow

By default, this is a waiting block, so the motor will finish moving before running the next block. To make the motor start moving and immediately run the next block right away, expand the block to say and don’t wait.

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

spin to position#

The spin to position block spins a motor or motor group to a specific absolute position using the current motor velocity and motor position.

    spin [ClawMotor v] to position (90) [degrees v] ▶

Parameters

Description

motor

The motor or motor group to spin:

  • ClawMotor
  • LiftMotor

position

The target position to spin the motor or motor group to.

unit

The unit of measurement:

  • degrees
  • turns

expanding arrow

By default, this is a waiting block, so the motor will finish moving before running the next block. To make the motor start moving and immediately run the next block right away, expand the block to say and don’t wait.

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] to position [-2] [turns v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

stop motor#

The stop motor block immediately stops the selected motor or motor group.

    stop [ClawMotor v]

Parameters

Description

motor

The motor or motor group to stop:

  • ClawMotor
  • LiftMotor

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v]
    wait [2] seconds
    stop [LiftMotor v]
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

Settings#

set motor velocity#

The set motor velocity block sets the default spinning speed of a motor or motor group as a percentage for all subsequent Motor blocks in the project.

    set [ClawMotor v] velocity to (50) [% v]

Parameters

Description

motor

The motor or motor group to set the velocity of:

  • ClawMotor
  • LiftMotor

velocity

Sets the default movement velocity from 0 to 100 as a percent.

unit

The unit that represents the velocity:

  • %

Example

    when started
    [Place a pin atop another pin.]
    set [LiftMotor v] velocity to [100] [% v]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

set motor timeout#

The set motor timeout block sets a time limit for how long a Motor block will wait to reach its target. If the robot cannot complete the movement within the set time, it will stop automatically and continue with the next block.

Note: The Motor’s time limit is used to prevent Motor blocks that do not reach their target position from stopping the execution of other blocks in the stack.

    set [ClawMotor v] timeout to (1) seconds

Parameters

Description

motor

The motor or motor group to set the timeout of:

  • ClawMotor
  • LiftMotor

time

The maximum number of seconds a Motor block will run before stopping and moving to the next block.

Example

    when started
    [Place a pin atop another pin.]
    set [LiftMotor v] timeout to [2] seconds
    spin [LiftMotor v] [up v] for [5] [turns v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

Position#

motor position#

The motor position block returns the total distance the selected motor or motor group has rotated.

    ([ClawMotor v] position in [degrees v])

Parameters

Description

motor

The motor or motor group to return the position of:

  • ClawMotor
  • LiftMotor

unit

The unit of measurement:

  • degrees
  • turns

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v]
    wait until <[-600] [math_greater_than v] ([LiftMotor v] position in [degrees v])>
    stop [LiftMotor v]
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

set motor position#

The set motor position block sets a specific position value to a motor or motor group, which updates the encoder reading.

    set [ClawMotor v] position to (0) [degrees v]

Parameters

Description

motor

The motor or motor group to set the position of:

  • ClawMotor
  • LiftMotor

position

The encoder position value to set.

unit

The unit of measurement:

  • degrees
  • turns

Example

    when started
    [Place a pin atop another pin.]
    set [LiftMotor v] position to [100] degrees
    spin [LiftMotor v] to position [-500] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

Values#

motor is done#

The motor is done? block returns a Boolean indicating whether the motor or motor group is not spinning.

  • True – The motor is not spinning.

  • False – The motor is spinning.

    <[ClawMotor v] is done?>

Parameters

Description

motor

The motor or motor group to check if it is done spinning:

  • ClawMotor
  • LiftMotor

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ◀ and don't wait
    wait [0.1] seconds
    repeat until <[LiftMotor v] is done?>
    set [TouchLED v] color to [red v]
    wait [0.5] seconds
    set [TouchLED v] color to [red v]
    wait [0.5] seconds
    end
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

motor is spinning?#

The motor is spinning? block returns a Boolean indicating whether the motor is spinning.

  • True – The motor is spinning.

  • False – The motor is not spinning.

    <[ClawMotor v] is spinning?>

Parameters

Description

motor

The motor or motor group to check if it is currently spinning:

  • ClawMotor
  • LiftMotor

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ◀ and don't wait
    wait [0.1] seconds
    while <[LiftMotor v] is spinning?>
    set [TouchLED v] color to [red v]
    wait [0.5] seconds
    set [TouchLED v] color to [red v]
    wait [0.5] seconds
    end
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

motor velocity#

The motor velocity block returns the current rotational speed of the motor or motor group in a range from -100% to 100%.

    ([ClawMotor v] velocity in [% v] :: custom-motion)

Parameters

Description

motor

The motor or motor group to return the velocity of:

  • ClawMotor
  • LiftMotor

unit

The unit that represents the velocity:

  • %

Example

    when started
    [Place a pin atop another pin.]
    set [LiftMotor v] velocity to [100] [% v]
    spin [LiftMotor v] [up v] for [600] [degrees v] ◀ and don't wait
    wait [0.5] seconds
    print ([LiftMotor v] velocity in [% v] :: custom-motion) ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]

AI Vision#

Actions#

get object data#

The get object data block filters data from the IQ AI Vision Sensor frame. The IQ AI Vision Sensor can detect Game Elements on the field.

The dataset stores objects ordered from largest to smallest by width, starting at index 0. Each object’s properties can be accessed using AI Vision object property block. An empty dataset is returned if no matching objects are detected.

The Get object data stack block.#
  get [AI Classifications v] data from [AIVision v]

Parameter

Description

signature

Filters the dataset to only include data of the given signature. The only available signature is:

  • AI Classifications – Detects Beams and Blue, Red, and Orange Pins.

Example

    when started
    [Place the Red Pin on the top left Blue Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    turn [left v] for [38] degrees ▶
    repeat until <([AIVision v] object [width v]) [math_greater_than v] [48]>
    [Move forward until the robot is close to the Pin.]
    get [AI Classifications v] data from [AIVision v]
    drive [forward v]
    end
    drive [forward v] for [160] [mm v] ▶
    spin [ClawMotor v] [open v]

Settings#

set object item#

The set object item block sets which item in the dataset to use.

The Set AI Vision object item stack block.#
  set [AIVision v] object item to [1]

Parameters

Description

item

The number of the item in the dataset to use.

Example

    when started
    [Find the object index of the nearest Orange Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    set [object_counter v] to [1]
    get [AI Classifications v] data from [AIVision v]
    [Iterate through all detected objects.]
    repeat ([AIVision v] object count)
        set [AIVision v] object item to (object_counter)
        if <[AIVision v] object is [Orange Pin v] ?> then
            print (join [Nearest Orange Pin is ] (object_counter)) ▶
        else
            change [object_counter v] by [1]

Values#

object exists?#

The object exists? block returns a Boolean indicating whether any object is detected in the dataset.

  • True – The dataset includes a detected object.

  • False – The dataset does not include any detected objects.

The AI Vision object exists Boolean block.#
  <AI Vision object exists?>

Parameters

Description

This block has no parameters.

Example

    when started
    [Raise the Lift until a Pin or Beam is detected.]
    repeat until <[AIVision v] object exists?>
    get [AI Classifications v] data from [AIVision v]
    spin [LiftMotor v] [up v]
    end
    stop [LiftMotor v]

object count#

The object count block returns the number of detected objects in the dataset as an integer.

The Set AI Vision object item stack block.#
  ([AIVision v] object count)

Parameters

Description

This block has no parameters.

Example

    when started
    [Find the object index of the nearest Orange Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    set [object_counter v] to [1]
    get [AI Classifications v] data from [AIVision v]
    [Iterate through all detected objects.]
    repeat ([AIVision v] object count)
        set [AIVision v] object item to (object_counter)
        if <[AIVision v] object is [Orange Pin v] ?> then
            print (join [Nearest Orange Pin is ] (object_counter)) ▶
        else
            change [object_counter v] by [1]

object property#

There are six properties that are included with each object (shown below) stored after the get object data block is used.

The AI Vision object property reporter block.#
  ([AIVision v] object [width v])

Some property values are based off of the detected object’s position in the IQ AI Vision Sensor’s view at the time that the get object data block was used. The IQ AI Vision Sensor has a resolution of 320 by 240 pixels.

Parameter

Description

property

Which property of the detected object to use:

width#

width returns the width of the detected object in pixels as an integer from 1 to 320.

The AI Vision object property stack block with its parameter set to width.#
  ([AIVision v] object [width v])

Example

    when started
    [Place the Red Pin on the top left Blue Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    turn [left v] for [38] degrees ▶
    repeat until <([AIVision v] object [width v]) [math_greater_than v] [48]>
    [Move forward until the robot is close to the Pin.]
    get [AI Classifications v] data from [AIVision v]
    drive [forward v]
    end
    drive [forward v] for [160] [mm v] ▶
    spin [ClawMotor v] [open v]
height#

height returns the height of the detected object in pixels as an integer from 1 to 240.

The AI Vision object property stack block with its parameter set to height.#
  ([AIVision v] object [height v])

Example

    when started
    [Place the Red Pin on the top left Blue Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    turn [left v] for [38] degrees ▶
    repeat until <([AIVision v] object [height v]) [math_greater_than v] [68]>
    [Move forward until the robot is close to the Pin.]
    get [AI Classifications v] data from [AIVision v]
    drive [forward v]
    end
    drive [forward v] for [160] [mm v] ▶
    spin [ClawMotor v] [open v]
centerX#

centerX returns the x-coordinate of the center of the detected object in pixels as an integer from 0 to 320.

The AI Vision object property stack block with its parameter set to centerX.#
  ([AIVision v] object [centerX v])

Example

    when started
    [Place the Red Pin on the bottom left Blue Pin.]
    drive [forward v] for [50] [mm v] ▶
    spin [LiftMotor v] [up v] for [450] [degrees v] ▶
    set turn velocity to [10] [% v]
    get [AI Classifications v] data from [AIVision v]
    repeat until <([AIVision v] object [centerX v]) [math_less_than v] [190]>
    [Turn until the robot is centered on the Blue Pin.]
    get [AI Classifications v] data from [AIVision v]
    turn [right v]
    end
    drive [forward v] for [350] [mm v] ▶
    spin [ClawMotor v] [open v]
centerY#

centerY returns the y-coordinate of the center of the detected object in pixels as an integer from 0 to 240.

The AI Vision object property stack block with its parameter set to centerY.#
  ([AIVision v] object [centerY v])

Example

    when started
    [Place the Red Pin on the top left Blue Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    turn [left v] for [38] degrees ▶
    repeat until <([AIVision v] object [centerY v]) [math_greater_than v] [210]>
    [Move forward until the robot is close to the Pin.]
    get [AI Classifications v] data from [AIVision v]
    drive [forward v]
    end
    drive [forward v] for [160] [mm v] ▶
    spin [ClawMotor v] [open v]
originX#

originX returns the x-coordinate of the top-left corner of the detected object’s bounding box in pixels as an integer from 0 to 320.

The AI Vision object property stack block with its parameter set to originX.#
  ([AIVision v] object [originX v])

Example

    when started
    [Place the Red Pin on the bottom left Blue Pin.]
    drive [forward v] for [50] [mm v] ▶
    spin [LiftMotor v] [up v] for [450] [degrees v] ▶
    set turn velocity to [10] [% v]
    get [AI Classifications v] data from [AIVision v]
    repeat until <([AIVision v] object [centerX v]) [math_less_than v] [160]>
    [Turn until the robot is centered on the Blue Pin.]
    get [AI Classifications v] data from [AIVision v]
    turn [right v]
    end
    drive [forward v] for [350] [mm v] ▶
    spin [ClawMotor v] [open v]
originY#

originY returns the y-coordinate of the top-left corner of the detected object’s bounding box in pixels as an integer from 0 to 240.

The AI Vision object property stack block with its parameter set to originY.#
  ([AIVision v] object [originY v])

Example

    when started
    [Place the Red Pin on the top left Blue Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    turn [left v] for [38] degrees ▶
    repeat until <([AIVision v] object [originY v]) [math_greater_than v] [180]>
    [Move forward until the robot is close to the Pin.]
    get [AI Classifications v] data from [AIVision v]
    drive [forward v]
    end
    drive [forward v] for [160] [mm v] ▶
    spin [ClawMotor v] [open v]

AI Classification is#

The AI Vision object is? block returns a Boolean indicating whether a detected object matches a specific classification.

  • True – The item in the dataset is the specific object.

  • False – The item in the dataset is not the specific object.

The AI Vision AI Classification is object Boolean block.#
  <[AIVision] object is [Beam v]?>

Parameter

Description

object

Which object to compare the item to:

  • Beam
  • Blue Pin
  • Red Pin
  • Orange Pin

Example

    when started
    [Find the object index of the nearest Orange Pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    set [object_counter v] to [1]
    get [AI Classifications v] data from [AIVision v]
    [Iterate through all detected objects.]
    repeat ([AIVision v] object count)
        set [AIVision v] object item to (object_counter)
        if <[AIVision v] object is [Orange Pin v] ?> then
            print (join [Nearest Orange Pin is ] (object_counter)) ▶
        else
            change [object_counter v] by [1]

Sensing#

Optical#

Optical found object?#

The Optical found object? block returns a Boolean indicating whether the Optical Sensor has detected an object.

  • True – The Optical Sensor has detected an object.

  • False – The Optical Sensor has not detected an object.

    <[Optical v] found an object?>

Parameters

Description

This block has no parameters.

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]
    wait until <not <[Optical v] found an object?>>
    spin [LiftMotor v] to position [0] [degrees v] ▶

Optical detects color?#

The Optical detects color? block returns a Boolean indicating whether the Optical Sensor has detected a specific color.

  • True – The Optical Sensor has detected the specified color.

  • False – The Optical Sensor has not detected the specified color.

    <[Optical v] detects [red v]?>

Parameters

Description

color

Which color to check for:

  • red
  • green
  • blue
  • yellow
  • orange
  • purple

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]
    wait until <not <[Optical v] detects [red v]?>>
    spin [LiftMotor v] to position [0] [degrees v] ▶

Optical brightness#

The Optical brightness block returns the amount of light detected by the Optical Sensor in a range from 0% to 100%.

    ([Optical v] brightness in %)

Parameters

Description

This block has no parameters.

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]
    wait until <[30] [math_greater_than v] ([Optical v] brightness in %)>
    spin [LiftMotor v] to position [0] [degrees v] ▶

Optical hue#

The Optical hue block returns the hue value of the color detected by the Optical Sensor.

Hue values range from 0 to 359 degrees, corresponding to positions on the color wheel shown below.

A circular color wheel displaying a full spectrum of hues labeled with degree values around the perimeter, increasing in 30-degree increments from 0° at the top to 360°.

    ([Optical v] hue in degrees)

Parameters

Description

This block has no parameters.

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]
    wait until <([Optical v] hue in degrees) [math_greater_than v] [0]>
    spin [LiftMotor v] to position [0] [degrees v] ▶

when Optical#

The when Optical block runs its stack when the Optical Sensor detects or loses an object. You can have multiple when Optical blocks to run multiple stacks of blocks at once.

    when [Optical v] [detects v] an object

Parameters

Description

action

Which action to trigger the hat block:

  • detects
  • loses

Example

    when started
    [Place a pin atop another pin.]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]
    when [Optical v] [loses v] an object
    [Lower the lift when the red pin is not in the claw.]
    spin [LiftMotor v] to position [0] [degrees v] ▶

Touch LED#

set TouchLED color#

The set TouchLED color block sets the color of the Touch LED.

    set [TouchLED v] color to [none v]

Parameters

Description

color

Sets the LED’s color to:

  • none – Turns off the Touch LED
  • red
  • green
  • blue
  • white
  • yellow
  • orange
  • purple
  • red violet
  • violet
  • blue violet
  • blue green
  • yellow green
  • yellow orange
  • red orange

Example

    when started
    [Place a pin atop another pin.]
    set [TouchLED v] color to [red v]
    spin [LiftMotor v] [up v] for [600] [degrees v] ▶
    drive [forward v] for (140) [mm v] ▶
    spin [ClawMotor v] [open v]
    set [TouchLED v] color to [none v]