This commit is contained in:
Peli de Halleux 2017-04-23 07:40:03 -07:00
Родитель 5992b840f6
Коммит 43130c45e5
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -6,9 +6,10 @@ bluetooth.onBluetoothDisconnected(() => {
})
bluetooth.startMidiService();
basic.showString("S")
let channel = 1;
input.onButtonPressed(Button.A, () => {
basic.clearScreen();
let piano = midi.inputChannel(0);
let piano = midi.inputChannel(channel);
for (let note = 0x0; note < 0x5A; note++) {
led.toggle(0, 0);
piano.noteOn(note);
@ -16,4 +17,15 @@ input.onButtonPressed(Button.A, () => {
piano.noteOff(note);
basic.pause(100);
}
})
})
input.onButtonPressed(Button.B, () => {
channel += 1;
basic.showNumber(channel);
})
input.onButtonPressed(Button.AB, () => {
basic.clearScreen();
for (let note = 0; note < 127; note++) {
led.toggle(1, 1);
midi.playDrum(note);
}
})