Skip to main content

Hardware: Web MIDI Inspector

techno4 v2.0.4 Core Component MIT License GitHub Repository CO «CF TECHNO4»

Інструмент підключення та діагностики зовнішніх MIDI-клавіатур, синтезаторів і контролерів через стандартний браузерний Web MIDI API з підтримкою Android WebView та Desktop.

Опитування та підключення MIDI пристроїв

if (navigator.requestMIDIAccess) {
  navigator.requestMIDIAccess().then(midiAccess => {
    for (let input of midiAccess.inputs.values()) {
      console.log('Підключено MIDI пристрій:', input.name);
      input.onmidimessage = (msg) => {
        const [status, note, velocity] = msg.data;
        console.log('MIDI сигнал: Status=' + status + ', Note=' + note + ', Velocity=' + velocity);
      };
    }
  });
}