pxt-calliope/libs/core/music.cpp

21 lines
544 B
C++
Raw Normal View History

2016-11-30 06:55:37 +01:00
#include "pxt.h"
namespace music {
/**
* Plays a tone through ``speaker`` for the given duration.
* @param frequency pitch of the tone to play in Hertz (Hz)
* @param ms tone duration in milliseconds (ms)
*/
2017-12-14 19:34:04 +01:00
//%
2017-02-23 18:44:18 +01:00
//% parts="speaker" async useEnumVal=1
2017-12-14 19:34:04 +01:00
void speakerPlayTone(int frequency, int ms) {
if(frequency > 0) uBit.soundmotor.soundOn(frequency);
else uBit.soundmotor.soundOff();
if(ms > 0) {
uBit.sleep(ms);
uBit.soundmotor.soundOff();
}
}
}