Control change

is it possible to send a simple control change, if yes where can I find an example?

Comments

  • Yes, of course. Here is a very simple example:

    WebMidi.enable(function (err) {
    
      if (err) {
        console.log("WebMidi could not be enabled.", err);
      } else {
        console.log(WebMidi.outputs);
        WebMidi.outputs[0].sendControlChange("volumecoarse", 54);
      }
    
    });
    

    For details, you can check the senControlChange() documentation.