pxt-calliope/docs/reference/music.md
Galen Nickel dda488c08f
Update some music ref docs (#1693)
* Update some music ref docs

* bad link

* Actually add the note, hello
2018-12-02 16:46:05 -08:00

804 B

Music

Generation of music tones through pin P0.

music.playTone(0, 0);
music.ringTone(0);
music.rest(0);
music.beginMelody(music.builtInMelody(Melodies.Entertainer), MelodyOptions.Once);
music.stopMelody(MelodyStopOptions.All);
music.onEvent(MusicEvent.MelodyNotePlayed, () => {});
music.beat(BeatFraction.Whole);
music.tempo();
music.changeTempoBy(20);
music.setTempo(120);

See Also

playTone, ringTone, rest, beginMelody, stopMelody, onEvent, beat, tempo, changeTempoBy, setTempo,