LED#

Introduction#

The VEX 123 Robot can glow different colors with the built-in LED light.

Below is a list of available blocks:

  • glow – Sets the color of the LED light.

glow#

The glow block sets the color of the LED light.

    glow [green v]

Parameters

Description

color

The color to set the LED to:

  • green
  • blue
  • purple
  • off

Example

aria-description goes here#
  when started :: hat events
  [Blink the LED light forever.]
  forever
  glow [green v]
  wait [0.5] seconds
  glow [off v]
  wait [0.5] seconds