Eventos#

Introducción#

An event is a starting signal for a set of blocks. Events blocks in VEXcode AIM let different sets of blocks begin at different times. For example, one set of blocks can start when the project begins, and another can start when a signal is sent from somewhere else in the project.

cuando empezó#

The when started hat block starts running the blocks below it when the project begins. Every project needs at least one when started block — without it, the blocks below it will not run. Multiple when started blocks can be used to run different sets of blocks at the same time.

El bloque de sombreros Cuando se inició.#
when started

Parámetros

Descripción

Este bloque no tiene parámetros.

Ejemplo

when started
[Turn around at the start of the project.]
turn to heading [180] degrees ▶

cuando recibo un evento#

The when I receive event hat block starts running the blocks below it when a signal with the same event name is broadcast.

El bloque de sombreros del evento Cuando recibo.#
when I receive [my_event v]

Parámetros

Descripción

evento

El evento que se activará. Los usuarios pueden seleccionar un evento existente, crear uno nuevo, renombrarlo o eliminarlo.

Ejemplo

when started
[Move forward and turn at the same time.]
wait until <screen pressed?>
broadcast [movement v] and wait
when I receive [movement v]
move [forward v] for [50] [mm v] ▶
when I receive [movement v]
turn [right v] for [90] degrees ▶

evento de transmisión#

The broadcast event stack block sends a signal that starts any when I receive event block with the same event name. The rest of the blocks in the project keep running without waiting for those blocks to finish.

El bloque de pila de eventos de transmisión.#
broadcast [my_event v]

Parámetros

Descripción

evento

El evento que se activará. Los usuarios pueden seleccionar un evento existente, crear uno nuevo, renombrarlo o eliminarlo.

Ejemplo

when started
[Display a surprised emoji when the screen is pressed.]
forever
if <screen pressed?> then
broadcast [emoji_press v]
else
show [emoji_happy v] looking [forward v]
when I receive [emoji_press v]
show [emoji_shocked v] looking [forward v]

evento de transmisión y espera#

The broadcast event and wait stack block sends a signal that starts any when I receive event block with the same event name. The rest of the project will wait for the broadcasted event to finish running.

El evento de transmisión y el bloque de pila de espera.#
broadcast [my_event v] and wait

Parámetros

Descripción

evento

El evento que se activará. Los usuarios pueden seleccionar un evento existente, crear uno nuevo, renombrarlo o eliminarlo.

Ejemplo

when started
[Move after the screen is pressed.]
wait until <screen pressed?>
broadcast [forward_and_turn v] and wait
print [Movement done.] on screen ▶
when I receive [forward_and_turn v]
move [forward v] for [50] [mm v] ▶
turn [right v] for [90] degrees ▶