💻 Programmatic MIDI Control Example

Initializing MIDI...

MIDI Configuration

Not Connected

Connect a MIDI device to use the programmatic API and experiment with knobs.

Console Access

// The midi object is exposed to window for console access
midi.channel.sendCC(74, 100);  // Send CC
midi.channel.sendNoteOn(60, 100);  // Play note
midi.channel.allNotesOff();  // All notes off (panic)
midi.channel.resetControllers();  // Reset all controllers
midi.channel.localControl(false);  // Disable local control
midi.connection.send([0x90, 60, 100]);  // Raw MIDI