Pateador#

Introducción#

El robot codificador VEX AIM cuenta con un pateador frontal que libera objetos sujetos por su fijación magnética. Puede usarse para patear balones deportivos con niveles de fuerza ajustables o para colocar barriles suavemente frente al robot.

El robot AIM en una vista de 3 cuartos que muestra su Kicker completamente extendido.

A continuación se muestra una lista de los métodos disponibles:

  • kick – Activates the kicker with SOFT, MEDIUM, or HARD force.

  • place – Gently places a barrel in front of the robot.

Comportamiento#

kick#

kick activates the robot’s kicker to kick a sports ball with one of three levels of force.

Uso:

robot.kicker.kick(force)

Parámetro

Descripción

force

The force to use when activating the Kicker. Options include:

  • HARD
  • MEDIUM
  • SOFT

# Kick an object with full force
robot.kicker.kick(HARD)

# Kick an object with medium force
robot.kicker.kick(MEDIUM)

# Kick an object with soft force
robot.kicker.kick(SOFT)

place#

place activates the robot’s kicker to place a barrel gently in front of the robot.

Uso:

robot.kicker.place()

Parámetros

Descripción

Este método no tiene parámetros.

# Place a currently held object, then back up
robot.kicker.place()
robot.move_for(50, 180)