Connect a MIDI device to use the programmatic API and experiment with knobs.
// 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