

Set bPlaySounds to false to mute the VEX.

Returns true if a sound is playing, false if no sound.bPlaySoundsA Boolean variable to mute the VEX. Use the File Management Utility for downloading sound files onto your VEXRobot Advanced Tools File ManagementPlaying SoundsPlaySound(sound) Plays a specific sound effect that is pre-programmed into the VEXsoundBlipsoundBeepBeepsoundDownwardTonessoundUpwardTonessoundLowBuzzsoundFastUpwardTonessoundShortBlipsoundExceptionsoundLowBuzzShortSound VariablesbSoundActiveA Boolean variable informs the user if the VEX is actively playing a sound. Playing Sounds PlayTone(frequency, durationIn10MsecTicks) Example: PlayTone(440, 10) Plays a 440hz note for 100ms.PlaySoundFile(fileName.wav)Will play the sound file fileName.wav. ROBOTC SoundsROBOTC with the VEX has a speaker port available on it for playing basic and polyphonic tones.You can play the follow types of sounds:A specific note PlayTone() A system sound PlaySound() A user loaded sound file (.wav) PlaySoundFile()
