WebMidi.enable(function(err) {
148
if (err) {
149
console.log("WebMidi kon niet worden ingeschakeld.", err);
150
} else {
151
console.log("WebMidi ingeschakeld!");
152
}
153
154
let inputSoftware = WebMidi.inputs[0];
155
156
// Luister naar 'noteon' events op alle kanalen
157
inputSoftware.addListener('noteon', "all", function(e) {
158
let note = e.note.number;
159
160
// Roep de corresponderende nootfunctie aan
161
if (noteFunctions[note]) {
162
noteFunctions[note]();
163
}
164
});
165
});
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter