Difference between revisions of "Tutorials/VEX Speaker module"
Line 62: | Line 62: | ||
== Sample Program Downloads == | == Sample Program Downloads == | ||
− | *[[ | + | *[[Media:VEX Songs.c]] |
− | *[[ | + | *[[Media:Sound Test.c]] |
<br /> | <br /> | ||
== PowerPoint explaining VEX Speaker == | == PowerPoint explaining VEX Speaker == | ||
− | *[[ | + | *[[Media:VEX-Sounds.pptx]] |
<br /> | <br /> | ||
== Sound Files == | == Sound Files == | ||
− | *[[ | + | *[[Media:Numbers.zip]] |
− | *[[ | + | *[[Media:Alphabet.zip]] |
<br /> | <br /> |
Revision as of 15:56, 7 May 2012
Got a new VEX Speaker?
Wiki Link: VEX2_Functions_Sound To help you get started, here are two sample programs to try out your new VEX speaker attachment. |
Contents
Unboxing
Example Code
Sound Test:
task main() { //Basic "Play Sound" commands PlaySound(soundBeepBeep); wait1Msec(200); //Intelligent "Play Sound" command //Delay until sound is done playing PlaySound(soundFastUpwardTones); while(bSoundActive) wait1Msec(1); //Play a tone: //First Parameter: Frequence in Hz //Second Parameter: Length to play in 1/100th of a seconds (50 = .5 seconds) PlayTone(440, 50); wait1Msec(500); //Play a Sound File (need to use the File Management to Upload First) PlaySoundFile("1.wav"); wait1Msec(1000); }
Sample Program Downloads
PowerPoint explaining VEX Speaker
Sound Files