Possible to have on screen elements output values to midi in port? #420
-
I want to create a web based midi controller that can send cc values to a device. Currently, I have a slider that updates it’s position when receiving rawValue from addlistener(‘controlchange’). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
To do that, you can simply use the |
Beta Was this translation helpful? Give feedback.
To do that, you can simply use the
sendControlChange()
method of either theOutput
or theOutputChannel
objects. Did you check the documentation? It has an example that's pretty close to what you want to do in the Sending Outgoing MIDI Messages section.