2017-07-07 12:44:34 +02:00
|
|
|
#include "pxt.h"
|
2017-07-11 16:44:35 +02:00
|
|
|
#include "ev3const.h"
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2017-07-07 12:44:34 +02:00
|
|
|
|
|
|
|
#define NOTE_PAUSE 20
|
|
|
|
|
|
|
|
namespace music {
|
|
|
|
|
2017-07-11 16:44:35 +02:00
|
|
|
uint8_t currVolume = 2;
|
|
|
|
|
|
|
|
void writeDev(void *data, int size) {
|
|
|
|
int fd = open("/dev/lms_sound", O_WRONLY);
|
|
|
|
write(fd, data, size);
|
|
|
|
close(fd);
|
|
|
|
}
|
2017-07-07 12:44:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the output volume of the sound synthesizer.
|
|
|
|
* @param volume the volume 0...256, eg: 128
|
|
|
|
*/
|
|
|
|
//% weight=96
|
|
|
|
//% blockId=synth_set_volume block="set volume %volume"
|
|
|
|
//% parts="speaker" blockGap=8
|
|
|
|
//% volume.min=0 volume.max=256
|
|
|
|
//% help=music/set-volume
|
|
|
|
//% weight=1
|
|
|
|
void setVolume(int volume) {
|
|
|
|
currVolume = max(0, min(100, volume * 100 / 256));
|
|
|
|
}
|
|
|
|
|
2017-07-11 16:44:35 +02:00
|
|
|
#define SOUND_CMD_BREAK 0
|
|
|
|
#define SOUND_CMD_TONE 1
|
|
|
|
#define SOUND_CMD_PLAY 2
|
|
|
|
#define SOUND_CMD_REPEAT 3
|
|
|
|
#define SOUND_CMD_SERVICE 4
|
|
|
|
|
|
|
|
struct ToneCmd {
|
|
|
|
uint8_t cmd;
|
|
|
|
uint8_t vol;
|
|
|
|
uint16_t freq;
|
|
|
|
uint16_t duration;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void _stopSound() {
|
|
|
|
uint8_t cmd = SOUND_CMD_BREAK;
|
|
|
|
writeDev(&cmd, sizeof(cmd));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _playTone(uint16_t frequency, uint16_t duration, uint8_t volume)
|
|
|
|
{
|
|
|
|
ToneCmd cmd;
|
|
|
|
cmd.cmd = SOUND_CMD_TONE;
|
|
|
|
cmd.vol = volume;
|
|
|
|
cmd.freq = frequency;
|
|
|
|
cmd.duration = duration;
|
|
|
|
// (*SoundInstance.pSound).Busy = TRUE;
|
|
|
|
writeDev(&cmd, sizeof(cmd));
|
|
|
|
}
|
|
|
|
|
2017-07-07 12:44:34 +02:00
|
|
|
/**
|
|
|
|
* Play a tone through the speaker for some amount of time.
|
|
|
|
* @param frequency pitch of the tone to play in Hertz (Hz)
|
|
|
|
* @param ms tone duration in milliseconds (ms)
|
|
|
|
*/
|
2017-10-03 08:28:44 +02:00
|
|
|
//% help=music/play-tone
|
2017-07-07 12:44:34 +02:00
|
|
|
//% blockId=music_play_note block="play tone|at %note=device_note|for %duration=device_beat"
|
2017-10-03 08:28:44 +02:00
|
|
|
//% parts="headphone" async
|
2017-07-07 12:44:34 +02:00
|
|
|
//% blockNamespace=music
|
2017-10-03 08:28:44 +02:00
|
|
|
//% weight=76 blockGap=8
|
2017-07-07 12:44:34 +02:00
|
|
|
void playTone(int frequency, int ms) {
|
|
|
|
if (frequency <= 0) {
|
2017-07-11 16:44:35 +02:00
|
|
|
_stopSound();
|
2017-07-07 12:44:34 +02:00
|
|
|
if (ms >= 0)
|
|
|
|
sleep_ms(ms);
|
|
|
|
} else {
|
|
|
|
if (ms > 0) {
|
|
|
|
int d = max(1, ms - NOTE_PAUSE); // allow for short rest
|
|
|
|
int r = max(1, ms - d);
|
2017-07-11 16:44:35 +02:00
|
|
|
_playTone(frequency, d, currVolume);
|
2017-07-07 12:44:34 +02:00
|
|
|
sleep_ms(d + r);
|
|
|
|
} else {
|
|
|
|
// ring
|
2017-07-11 16:44:35 +02:00
|
|
|
_playTone(frequency, 0, currVolume);
|
2017-07-07 12:44:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
sleep_ms(1);
|
|
|
|
}
|
|
|
|
}
|