1a9235e333
* gluing to support MIDI devices in the simulator * sim support for midi * simplify interface * ensure helper function does not show up in TS * bump pxt
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
namespace pxsim.control {
|
|
export function __midiSend(data: RefBuffer) {
|
|
const b = board();
|
|
pxsim.AudioContextManager.sendMidiMessageAsync(data)
|
|
.done();
|
|
}
|
|
} |