LED#

Introduction#

The LED Indicator allows the V5 Brain to turn a connected light-emitting diode (LED) on or off using a 3-Wire Port.

The green VEX V5 LED indicator.

This page uses led_a as the example LED Indicator name. Replace it with your own configured name as needed.

Below is a list of available methods:

  • on – Turns the specified LED Indicator on.

  • off – Turns the specified LED Indicator off.

Constructor – Manually initialize an LED Indicator.

  • Led – Create an LED Indicator.

on#

on turns the specified LED Indicator on.

Usage:
led_a.on()

Parameters

Description

This method has no parameters.

off#

off turns the specified LED Indicator off.

Usage:
led_a.off()

Parameters

Description

This method has no parameters.

Constructor#

Constructors are used to manually create Led objects, which are necessary for configuring an LED Indicator outside of VEXcode.

Led#

Led creates an LED Indicator.

Usage:
Led(port)

Parameter

Description

port

The 3-Wire Port that the LED Indicator is connected to:

  • On the V5 Brainbrain.three_wire_port.x where x is the number of the port.
  • On a 3-Wire Expanderexpander.a where expander is the name of the expander instance.

# Create an LED Indicator in Port A
led_a = Led(brain.three_wire_port.a)