-
The MIDI System Exclusive implementation for sending and receiving works very well - especially if you are only sending or receiving. However, if you are building a system which does both sending and receiving it would be nice to have the option of sending the raw System Exclusive message as one array, including the status byte and the manufacturer ID bytes. The current implementation of For example: Say that you are using a 3-byte manufacturer ID and you have specified Thanks as always for all of your hard work.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If I understand your needs correctly, the By the way, thanks for your support! 🙏🏻 |
Beta Was this translation helpful? Give feedback.
If I understand your needs correctly, the
send()
method is what you are looking for. The method signature you quoted near the end of your message is for version 2. In v3, the method's signature is simplysend(message, [options])
. I believe this is what you are looking for. This method is available on both theOutput
andOutputChannel
objects.By the way, thanks for your support! 🙏🏻