Emoji#
Introduction#
The VEX AIM Coding Robot can display emojis on its screen. Emojis can be used to show the robot’s emotion, show a status, or give feedback while a project is running.
Only one emoji can be shown at a time. A new show emoji block replaces the emoji currently shown on the screen. Use hide emoji to clear the emoji from the screen.
Below is a list of all blocks:
Actions — Show or hide an emoji.
show emoji — Displays an emoji facing forward, left, or right.
hide emoji — Clears the emoji from the screen.
Actions#
show emoji#
The show emoji stack block displays an emoji on the robot’s screen. The emoji appears over anything else shown on the screen.
show [emoji_happy v] looking [forward v]
Parameter |
Description |
|---|---|
emoji |
The emoji to display. See the emoji options below. |
direction |
The direction the emoji faces on the screen:
|
|
|
|
|
|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Examples
when started
[Show two different emotions.]
show [emoji_confident v] looking [forward v]
wait (2) seconds
show [emoji_frustrated v] looking [forward v]
when started
[Show one emoji facing different directions.]
show [emoji_excited v] looking [left v]
wait (2) seconds
show [emoji_excited v] looking [forward v]
wait (2) seconds
show [emoji_excited v] looking [right v]
hide emoji#
The hide emoji stack block clears the emoji from the robot’s screen.
hide emoji
Parameters |
Description |
|---|---|
This block has no parameters. |
Example
when started
[Show an emoji for 2 seconds.]
show [emoji_confident v] looking [forward v]
wait (2) seconds
hide emoji



































