Lego EV3 standard bitmaps and sounds

Sounds

Here is a list of the standard Lego EV3 sounds in RSF format. You can make them available to your EV3 Basic programs by copying them to the brick in accordance with the instructions on this site. If you follow those instructions then all the files will be in a single 'Sounds' folder but here they are shown in their original folders.

Recall that in EV3 Basic you can play a sound file on the brick's speaker with a command such as Speaker.Play(100, "Sounds/Fanfare") provided you have copied the sound files into the brick according to the instructions on this site. Note that the file name is given without the .RSF extension.

Images

Here are the standard EV3 full screen bitmaps. Although these images below show with the .BMP extension, it is the RGF files that you need to download to the brick, and not the BMP files.

Don't forget also that file and folder names on the brick are case-sensitive since the brick has a Linux operating system.

Here is an example of a command that would display an RGF image file on the brick's LCD screen, assuming the RGF files have been copied to the brick in accordance with the instructions on this site. Note that the file name is given without the .RGF extension.

    LCD.BmpFile(1,0,0, "Images/Big smile")

but this command would not work:

    LCD.BmpFile(1,0,0, "Images/Big Smile")